mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
import Layout from 'components/layout'
|
|
|
|
export default function Page () {
|
|
return (
|
|
<Layout>
|
|
<h1>NextAuth.js Example</h1>
|
|
<p>
|
|
This is an example site to demonstrate how to use <a href='https://next-auth.js.org'>NextAuth.js</a> for authentication.
|
|
</p>
|
|
</Layout>
|
|
)
|
|
}
|