diff --git a/app/(index)/layout.tsx b/app/(index)/layout.tsx new file mode 100644 index 0000000..3968f6c --- /dev/null +++ b/app/(index)/layout.tsx @@ -0,0 +1,33 @@ +import Link from "next/link"; + +import { cn } from "@/lib/utils"; +import { buttonVariants } from "@/components/ui/button"; + +interface MarketingLayoutProps { + children: React.ReactNode; +} + +export default async function MarketingLayout({ + children, +}: MarketingLayoutProps) { + return ( +
+ In progress build of my portfolio using Next.js 13 server + components. +
+
- Get started by editing
- app/page.tsx
-
- Find in-depth information about Next.js features and API. -
- - - -- Learn about Next.js in an interactive course with quizzes! -
- - - -- Explore the Next.js 13 playground. -
- - - -- Instantly deploy your Next.js site to a shareable URL with Vercel. -
- -