diff --git a/src/app/_components/grid/index.tsx b/src/app/_components/grid/index.tsx new file mode 100644 index 00000000..11233e5b --- /dev/null +++ b/src/app/_components/grid/index.tsx @@ -0,0 +1,55 @@ +import { GithubLink } from './cards/github-link' +import { GithubStats } from './cards/github-stats' +import { LatestPost } from './cards/latest-post' +import { LetterboxedLink } from './cards/letterboxed-link' +import { LinksCard } from './cards/links' +import { StacksCard } from './cards/stacks-card' + +const Example = ({ label = 'Example' }: { label?: string }) => ( +
+ {label} +
+) + +export function Grid() { + return ( +
+
+
+ +
+
+ +
+ +
+ +
+
+
+
+ +
+
+ + +
+
+ +
+ +
+
+ +
+
+ + + +
+ +
+
+
+ ) +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 6062bf8c..9a736c48 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,13 +1,15 @@ +import { Grid } from './_components/grid' import { MainTitle } from './_components/main-title' import { StartButton } from './_components/start-button' export default function Page() { return ( -
-
+
+
+
) }