kuru-kuru/routes/_app.tsx

19 lines
438 B
TypeScript
Raw Normal View History

import { AppProps } from "$fresh/server.ts";
2023-09-19 05:53:35 +00:00
import Footer from "../islands/Footer.tsx";
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>
2023-09-19 05:53:35 +00:00
<Footer />
</html>
);
}