mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
35 lines
1.3 KiB
Text
35 lines
1.3 KiB
Text
---
|
|
import { Toaster } from 'react-hot-toast'
|
|
|
|
import { languageTag } from '../paraglide/runtime'
|
|
import Header from 'components/Header.astro'
|
|
import Footer from 'components/Footer.astro'
|
|
|
|
import 'styles/global.css'
|
|
---
|
|
|
|
<html lang={languageTag()} dir={Astro.locals.paraglide.dir} class='h-full'>
|
|
<head>
|
|
<title>Sitting on Clouds</title>
|
|
<meta property='og:type' content='website' />
|
|
<meta property='og:site_name' content='Sitting on Clouds' />
|
|
|
|
<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: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)} />
|
|
</head>
|
|
<body class='flex flex-col min-h-full m-0'>
|
|
<Header />
|
|
<main class='flex flex-1 bg-soc-green'>
|
|
<Toaster client:only='react' toastOptions={{ duration: 6000 }} />
|
|
<slot />
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|