diff --git a/app/grid-gradient.svg b/app/grid-gradient.svg new file mode 100644 index 0000000..5a7defa --- /dev/null +++ b/app/grid-gradient.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/app/layout.tsx b/app/layout.tsx index 523dcce..87a7737 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -14,7 +14,26 @@ export default function RootLayout({ return ( -
{children}
+
+
+
+ al +
+
+ sm +
+
+ md +
+
+ lg +
+
+ xl +
+
+ {children} +
); diff --git a/app/page.tsx b/app/page.tsx index 68c17e0..872e925 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,9 +1,83 @@ +import Link from "next/link"; +import { buttonVariants, Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { cn } from "@/lib/utils"; + export const dynamic = "force-dynamic"; export default async function Index() { return ( -
-

Hello, World!

+
+ {/* Hero */} +
+ {/* Navbar */} + + {/* Hero Content */} +
+
+

+ Simple. Intelligent. Automated. +

+

+ AI-powered project management for tech teams and indie developers. +

+
+
+ + +
+
+
); }