From d4052a1f73eb9fa293ac3ac2ab2bad0729474115 Mon Sep 17 00:00:00 2001 From: schererleander Date: Fri, 26 Dec 2025 18:08:21 +0100 Subject: refactor(layout): move navbar and footer to root layout and switch toast library --- src/app/page.tsx | 72 +++++++++++++++++++++++++------------------------------- 1 file changed, 32 insertions(+), 40 deletions(-) (limited to 'src/app/page.tsx') diff --git a/src/app/page.tsx b/src/app/page.tsx index 38fc4bb..ade6baa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,51 +1,43 @@ 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 -

-
+
+
+
+
+

+ 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 +

-
- -
) } -- cgit v1.3.1