From 151925bc1cad0829605a156ecb3c9c02bdd8af4f Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 27 Sep 2024 12:07:29 +0200 Subject: [PATCH] refactor(component): simplify HomePage layout Simplified the HomePage component by removing extensive HTML structure and redundant elements. This change focuses on streamlining the design and improving readability. --- src/app/page.tsx | 100 ++--------------------------------------------- 1 file changed, 3 insertions(+), 97 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6fe62d1..7060b93 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,101 +1,7 @@ import Image from "next/image"; -export default function Home() { - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.tsx - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
+export default function HomePage() { + return (
-
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); + ); }