mirror of
https://github.com/remvze/moodist.git
synced 2026-04-13 12:41:47 -04:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
---
|
|
import '@/styles/global.css';
|
|
|
|
interface Props {
|
|
description?: string;
|
|
title?: string;
|
|
}
|
|
|
|
const title = Astro.props.title || 'Moodist: Ambient Sounds for Focus and Calm';
|
|
const description =
|
|
Astro.props.description ||
|
|
"Moodist is a free online ambient sound generator for focus and calm, offering 35 handpicked sounds in various categories, from nature's tranquil melodies to the soothing ambiance of urban life.";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta content="Astro description" name="description" />
|
|
<meta content="width=device-width" name="viewport" />
|
|
<meta content={Astro.generator} name="generator" />
|
|
<meta content="#18181b" name="theme-color" />
|
|
<link href="/favicon.svg" rel="icon" type="image/svg+xml" />
|
|
|
|
<title>{title}</title>
|
|
<meta content={title} name="title" />
|
|
<meta content={description} name="description" />
|
|
|
|
<meta content={title} property="og:title" />
|
|
<meta content={description} property="og:description" />
|
|
<meta content="Moodist" property="og:site_name" />
|
|
<meta content="https://moodist.app" property="og:url" />
|
|
<meta content="website" property="og:type" />
|
|
<meta content="https://moodist.app/og.png" property="og:image" />
|
|
|
|
<meta content="summary_large_image" name="twitter:card" />
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|