Skip to content

Instantly share code, notes, and snippets.

@KenanBek
Created November 12, 2020 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KenanBek/8e3009b912914020865c5c9aaad010ef to your computer and use it in GitHub Desktop.
Save KenanBek/8e3009b912914020865c5c9aaad010ef to your computer and use it in GitHub Desktop.
Next.js tutorial step 1. Manual setup.
function HomePage() {
return (
<div>
<h1>Hello, Next.js!</h1>
<p>Next.js quick start tutorial with manual setup.</p>
<img src="/image1.png" />
</div>
);
}
export default HomePage;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment