From 71239018e2d6cb90a6765476625e7429e98b7d19 Mon Sep 17 00:00:00 2001 From: Travis Amiel Date: Thu, 1 Feb 2024 14:50:40 -0500 Subject: [PATCH 1/3] Add more text to The Page --- src/app/page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.js b/src/app/page.js index fdfdc9e..78d918b 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -4,6 +4,7 @@ function Home() { return (

Hello Next!

+

I am learning so much thanks to this course

); } From 025681c9d977bb31e5ca2b3832fd612f968637c1 Mon Sep 17 00:00:00 2001 From: Travis Amiel Date: Thu, 1 Feb 2024 15:22:16 -0500 Subject: [PATCH 2/3] Update page.js with footer, for real --- src/app/page.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/page.js b/src/app/page.js index 78d918b..b8d2de5 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -6,6 +6,9 @@ function Home() {

Hello Next!

I am learning so much thanks to this course

+
+ Now there is a footer. +
); } From 0283ccaa28855078fcdf0ba125e34b7d5bcd3e09 Mon Sep 17 00:00:00 2001 From: Travis Amiel Date: Thu, 1 Feb 2024 15:24:33 -0500 Subject: [PATCH 3/3] Fix page --- src/app/page.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app/page.js b/src/app/page.js index b8d2de5..5d69340 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -2,13 +2,15 @@ import React from 'react'; function Home() { return ( -
-

Hello Next!

-

I am learning so much thanks to this course

-
-
- Now there is a footer. -
+ <> +
+

Hello Next!

+

I am learning so much thanks to this course

+
+ + ); }