Deno re-write

This commit is contained in:
2025-04-23 01:15:21 -06:00
parent 88aa5b27d7
commit 261aab9a4b
91 changed files with 362 additions and 5678 deletions

17
routes/_app.tsx Normal file
View File

@ -0,0 +1,17 @@
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>
);
}