kuru-kuru/routes/_app.tsx
Ayane bdd00f95ea
Assign a tailwind class for the mascot
Signed-off-by: Ayane <ayane@vignetteapp.org>
2023-09-19 11:50:56 +08:00

16 lines
377 B
TypeScript

import { AppProps } from "$fresh/server.ts";
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" />
<title>Kuru kuru~!</title>
</head>
<body>
<Component />
</body>
</html>
);
}