Created fresh deno project

This commit is contained in:
Kevin FEDYNA
2024-12-02 14:36:52 +01:00
parent b3fbe6b6c8
commit 9a97591bda
20 changed files with 379 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
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>polympr</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<Component />
</body>
</html>
);
}