Files
my-website-v2/frontend/routes/_app.tsx

17 lines
444 B
TypeScript
Raw Normal View History

2024-09-03 01:17:19 -04:00
import { type PageProps } from "$fresh/server.ts";
export default function App({ Component }: PageProps) {
return (
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title>
<link rel="stylesheet" href="/styles.css" />
</head>
2025-06-30 00:23:41 -04:00
<body class="bg-[#313244]">
2024-09-03 01:17:19 -04:00
<Component />
</body>
</html>
);
}