Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ import React from 'react';

function Home() {
return (
<main>
<h1>Hello Next!</h1>
</main>
<>
<main>
<h1>Hello Next!</h1>
<p>I am learning so much thanks to this course</p>
</main>
<footer>
Now there is a footer.
</footer>
</>
);
}

Expand Down