- );
-}
diff --git a/apps/web/src/app/(landing)/layout.tsx b/apps/web/src/app/(landing)/layout.tsx
new file mode 100644
index 00000000..a6af22dc
--- /dev/null
+++ b/apps/web/src/app/(landing)/layout.tsx
@@ -0,0 +1,45 @@
+import { SignedIn, SignedOut, UserButton } from "@clerk/nextjs";
+import Image from "next/image";
+import Link from "next/link";
+import { Button } from "@/components/ui/button";
+
+export default function HomeLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {children}
+ >
+ );
+}
diff --git a/apps/web/src/app/(landing)/page.tsx b/apps/web/src/app/(landing)/page.tsx
new file mode 100644
index 00000000..03ae5509
--- /dev/null
+++ b/apps/web/src/app/(landing)/page.tsx
@@ -0,0 +1,309 @@
+import { auth } from "@clerk/nextjs/server";
+import { ArrowRight, ChevronRight, Sparkles } from "lucide-react";
+import Image from "next/image";
+import Link from "next/link";
+import { redirect } from "next/navigation";
+import { Button } from "@/components/ui/button";
+import {
+ Card,
+ CardDescription,
+ CardHeader,
+ CardTitle,
+} from "@/components/ui/card";
+import HeroBadge from "@/components/ui/hero-badge";
+
+export default async function Home() {
+ const { userId } = await auth();
+
+ if (userId) {
+ redirect("/dashboard");
+ }
+
+ return (
+
+ {/* Hero Section */}
+
+
+ }
+ endIcon={}
+ />
+
+
+ Plan better. Track easier.
+ Graduate smarter.
+
+
+
+ A smarter student dashboard & course helper for NYU students
+
+
+
+
+
+
+
+
+ {/* Features Section */}
+
+
+ {/* Feature Card 1 */}
+
+
+
+
+ Plan your semesters. Stay organized. See the big picture.{" "}
+
+
+ A visual Degree Progress Report that shows completed and
+ missing requirements at a glance.
+
+
+
+
+
+
+
+
+
+
+
+
+ Track your progress. Understand your path.{" "}
+
+
+ A visual Degree Progress Report that shows completed and
+ missing requirements at a glance.
+
+
+
+
+
+ Plan directly from Albert+
+
+
+ Use the Sidebar to add courses and build your next semester
+ plan seamlessly.
+
+
+
+
+
+
+
+
+
+
+
+
+ Plan your semesters. Stay organized. See the big picture.{" "}
+
+
+ A visual Degree Progress Report that shows completed and
+ missing requirements at a glance.
+
+
+
+
+
+
+
+
+
+
+
+
+ Explore More Features in Albert+
+
+
+ {/* Feature Card 1 */}
+
+
+
+
+
+ Share your schedule{" "}
+
+
+ Show friends or advisors your upcoming semester with one
+ click.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Share your schedule{" "}
+
+
+ Show friends or advisors your upcoming semester with one
+ click.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Share your schedule{" "}
+
+
+ Show friends or advisors your upcoming semester with one
+ click.
+
+