From df0e037b526bc1ec22b9771ed75f8df29571ff22 Mon Sep 17 00:00:00 2001 From: andrzej Date: Tue, 11 Jun 2024 15:37:22 +0200 Subject: [PATCH] first route --- src/app/layout.tsx | 6 +++- src/app/page.tsx | 86 +--------------------------------------------- 2 files changed, 6 insertions(+), 86 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3314e47..88578b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,7 +16,11 @@ export default function RootLayout({ }>) { return ( - {children} + + + {children} ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index d2c63a4..c0b9943 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,92 +4,8 @@ import styles from "./page.module.css"; export default function Home() { return (
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By{" "} - Vercel Logo - -
-
+ Hello -
- Next.js Logo -
- -
- -

- Docs -> -

-

Find in-depth information about Next.js features and API.

-
- - -

- Learn -> -

-

Learn about Next.js in an interactive course with quizzes!

-
- - -

- Templates -> -

-

Explore starter templates for Next.js.

-
- - -

- Deploy -> -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
); }