kuru-kuru/routes/_app.tsx

49 lines
1.7 KiB
TypeScript
Raw Normal View History

import { AppProps } from "$fresh/server.ts";
import Footer from "../components/Footer.tsx";
import { Partytown } from "partytown";
export default function App({ Component }: AppProps) {
return (
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Kuru Kuru~" />
<meta property="og:site_name" content="Kuru Kuru~" />
<meta property="og:url" content="https://herta.deno.dev" />
<meta
property="og:description"
2023-10-21 08:56:13 +00:00
content="The website for Herta, the cutest genius Honkai: Star Rail character out there."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://herta.deno.dev/assets/img/hertaa1.gif"
/>
<meta name="title" content="Herta Kuru" />
<meta
name="description"
content="The website for Herta, the cutest genius Honkai: Star Rail character out there."
/>
<meta
name="keywords"
content="Kuru2, Kuru Kuru, Kuru Kuru herta, kuru kuru herta hsr, kuru kuru herta star rail, herta honkai star rail, herta, herta hsr, star rail herta"
/>
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="canonical" content="https://herta.deno.dev/" />
<script
2024-01-10 17:25:17 +00:00
src="https://takeback.bysourfruit.com/api/kit/1QFWK02N8XLPML2AHW8TVD"
type="text/partytown"
/>
<title>Kuru kuru~!</title>
</head>
<body>
<Partytown />
<Component />
</body>
2023-09-19 05:53:35 +00:00
<Footer />
</html>
);
}