atri.dad/routes/_app.tsx
Atridad Lahiji 9dc9225591
All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m18s
All gucci!
2025-04-24 20:27:25 -06:00

17 lines
502 B
XML

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>Atridad Lahiji</title>
<link rel="stylesheet" href="/styles.css" />
<link rel="icon" type="image/x-icon" href="/favicon.ico"></link>
</head>
<body>
<Component />
</body>
</html>
);
}