From a9ff8cee4e16dd046e7847c14f16abfa3ccad2ec Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Thu, 19 Oct 2023 23:25:37 -0700 Subject: [PATCH] using nextjs to test ssr --- Websites/jefes-nextjs/app/globals.css | 7 +- Websites/jefes-nextjs/app/page.tsx | 106 +------------------------- 2 files changed, 2 insertions(+), 111 deletions(-) diff --git a/Websites/jefes-nextjs/app/globals.css b/Websites/jefes-nextjs/app/globals.css index fd81e88..0cde8e5 100644 --- a/Websites/jefes-nextjs/app/globals.css +++ b/Websites/jefes-nextjs/app/globals.css @@ -18,10 +18,5 @@ body { color: rgb(var(--foreground-rgb)); - background: linear-gradient( - to bottom, - transparent, - rgb(var(--background-end-rgb)) - ) - rgb(var(--background-start-rgb)); + padding: 1rem; } diff --git a/Websites/jefes-nextjs/app/page.tsx b/Websites/jefes-nextjs/app/page.tsx index 7a8286b..e4a2a45 100644 --- a/Websites/jefes-nextjs/app/page.tsx +++ b/Websites/jefes-nextjs/app/page.tsx @@ -3,111 +3,7 @@ import Image from 'next/image' export default function Home() { return (
-
-

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

-
- - By{' '} - Vercel Logo - -
-
- -
- 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 the Next.js 13 playground. -

-
- - -

- Deploy{' '} - - -> - -

-

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

-
-
+

Hello World

) }