This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-auth0/app/page.tsx
2024-07-07 17:51:49 +02:00

10 lines
245 B
TypeScript

export default function Home() {
return (
<main className='flex min-h-screen flex-col items-center justify-between p-24'>
<h1 className='text-center text-4xl font-bold'>
Next.js + Auth0 Starter
</h1>
</main>
);
}