Deno re-write
This commit is contained in:
17
routes/_app.tsx
Normal file
17
routes/_app.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user