Skip to content

Commit

Permalink
configure head
Browse files Browse the repository at this point in the history
  • Loading branch information
glesage committed Dec 5, 2024
1 parent f45c8eb commit 371459c
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions web/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
import { Head } from "$fresh/runtime.ts";

export default function Home() {
return (
<div class="px-4 py-8">
<div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
<h1 class="text-4xl font-bold">App builder</h1>
<>
<Head>
<meta charset="UTF-8" />
<title>EVY App builder</title>
<meta
name="description"
content="The EVY App builder is a tool that allows you to build apps for EVY"
/>
<link rel="stylesheet" href="styles.css" />
<script src="script.js"></script>
</Head>
<div class="px-4 py-8">
<div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
<h1 class="text-4xl font-bold">App builder</h1>
</div>
</div>
</div>
</>
);
}

0 comments on commit 371459c

Please sign in to comment.