mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Implement register form
This commit is contained in:
parent
adeb3fd3bf
commit
cdcd71cf2a
17 changed files with 526 additions and 99 deletions
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
import { languageTag } from '../paraglide/runtime'
|
||||
import { Toaster } from 'react-hot-toast'
|
||||
|
||||
import { languageTag } from '../paraglide/runtime'
|
||||
import Header from 'components/Header.astro'
|
||||
|
||||
import 'styles/global.css'
|
||||
|
|
@ -14,28 +15,18 @@ import 'styles/global.css'
|
|||
|
||||
<meta name='theme-color' content='#ffffff' />
|
||||
<meta property='og:url' content='/' />
|
||||
<meta
|
||||
property='og:title'
|
||||
content='Sitting on Clouds — High Quality soundtrack library'
|
||||
/>
|
||||
<meta
|
||||
property='og:description'
|
||||
content='Largest Video Game & Animation Soundtrack サウンドトラック Archive'
|
||||
/>
|
||||
<meta property='og:title' content='Sitting on Clouds — High Quality soundtrack library' />
|
||||
<meta property='og:description' content='Largest Video Game & Animation Soundtrack サウンドトラック Archive' />
|
||||
<meta property='og:image' content='/img/assets/clouds_thumb.png' />
|
||||
<meta name='generator' content={Astro.generator} />
|
||||
<meta charset='utf-8' />
|
||||
|
||||
<link
|
||||
rel='alternate'
|
||||
type='application/rss+xml'
|
||||
title='Sitting on Clouds'
|
||||
href={new URL('rss.xml', Astro.site)}
|
||||
/>
|
||||
<link rel='alternate' type='application/rss+xml' title='Sitting on Clouds' href={new URL('rss.xml', Astro.site)} />
|
||||
</head>
|
||||
<body class='flex flex-col min-h-full m-0 color-'>
|
||||
<Header />
|
||||
<main class='flex-1'>
|
||||
<Toaster client:only='react' toastOptions={{ duration: 6000 }} />
|
||||
<slot />
|
||||
</main>
|
||||
<footer>This is the footer</footer>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue