Last active
September 10, 2025 08:23
-
-
Save jarrensj/6745d49d78c14a86e3bbb10e21139d3f to your computer and use it in GitHub Desktop.
page.tsx for fresh next.js app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default function Home() { | |
| return ( | |
| <main className="min-h-screen p-8 flex flex-col items-center justify-center text-center"> | |
| <h1 className="text-2xl font-bold mb-4">hi</h1> | |
| </main> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment