2024-01-14 20:03:45 +00:00
|
|
|
import Head from 'next/head'
|
2024-02-17 19:32:03 +00:00
|
|
|
export default function Landing(): React.JSX.Element {
|
2023-12-26 01:25:55 +00:00
|
|
|
return (
|
2024-01-14 20:03:45 +00:00
|
|
|
<>
|
|
|
|
<Head>
|
2024-02-17 19:32:03 +00:00
|
|
|
<title>XeNote</title>
|
2024-01-14 20:03:45 +00:00
|
|
|
</Head>
|
2024-02-17 01:35:38 +00:00
|
|
|
|
2024-02-17 19:32:03 +00:00
|
|
|
<div className='flex-col x-center'>
|
|
|
|
<h1>Welcome to XeNote</h1>
|
|
|
|
<a href="/notes" target="_blank" className='text-md font-muted font-bold '>🏃 Notes</a>
|
2024-01-14 20:03:45 +00:00
|
|
|
</div >
|
|
|
|
</>
|
2023-12-30 16:42:21 +00:00
|
|
|
)
|
2023-12-26 01:25:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|