From 075e6dd9eaf4bc265affa6ecaabbe1b76c21a227 Mon Sep 17 00:00:00 2001 From: schererleander Date: Wed, 2 Jul 2025 22:18:28 +0200 Subject: feat: add app pages and layout --- src/app/page.tsx | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/app/page.tsx (limited to 'src/app/page.tsx') diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..bc498c7 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,53 @@ +"use client" + +import Link from "next/link" +import { Button } from "@/components/ui/button" +import Navbar from "@/components/Navbar" +import Footer from "@/components/Footer" +import { LogIn, ArrowRight } from "lucide-react" + +export default function Home() { + return ( +
+ + +
+
+
+
+

+ Build Something + Amazing +

+

+ A modern Next.js application with beautiful UI components, + secure authentication, and everything you need to build your next project. +

+
+ +
+ + +
+ +
+

+ Built with Next.js, Tailwind CSS, Shadcn/UI, and MongoDB +

+
+
+
+
+ +
+ ) +} \ No newline at end of file -- cgit v1.3.1