coforma/swift-tech-challenge

View on GitHub
src/app/page.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// components
import { GridContainer } from "@trussworks/react-uswds";
import { HeroImage } from "./components";
// utils
import { Browse } from "./components/layout/Browse";

export const dynamic = "force-dynamic";

export default async function Home() {
  return (
    <main>
      <HeroImage />
      <GridContainer>
        <Browse />
      </GridContainer>
    </main>
  );
}