Skip to content

Commit

Permalink
refactor(nextjs): add nice heading
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Jan 20, 2024
1 parent 8d89f8b commit 8e993bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/nextjs-app-router/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ export const signup = createForm({
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm">
<div className="z-10 max-w-5xl w-full items-center justify-between text-sm">
<h1 className="dark:text-gray-50 text-3xl font-bold mb-5">
Next.js full stack forms 💪
</h1>
<Signup />
</div>
</main>
Expand Down

0 comments on commit 8e993bb

Please sign in to comment.