Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
glesage committed Dec 9, 2024
1 parent 371459c commit 2933728
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 19 deletions.
6 changes: 5 additions & 1 deletion web/routes/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ export default function App({ Component }: PageProps) {
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>EVY</title>
<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" />
</head>
<body f-client-nav>
Expand Down
22 changes: 4 additions & 18 deletions web/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
import { Head } from "$fresh/runtime.ts";

export default function Home() {
return (
<>
<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 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>
);
}

0 comments on commit 2933728

Please sign in to comment.