From fb81e0a7c0de782bba223d669b886b932c149a17 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Tue, 3 Jun 2025 22:27:49 +0200 Subject: [PATCH] feat: add Link component and update page layout --- src/app/page.tsx | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5c7f34c..85d4dc3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,18 +1,23 @@ import Image from 'next/image'; +import Link from 'next/link'; export default function Home() { return (
-
+
Next.js logo -
    +

    + Welcome to the Next.JS App Router Template. If you like this please consider starring the + repository. +

    +
    1. Get started by editing{' '} @@ -23,8 +28,8 @@ export default function Home() {
    2. Save and see your changes instantly.
    -
+ +

+ Made with by{' '} + + Jan-Marlon Leibl + +

); } -- 2.49.0