using hero in root page

This commit is contained in:
Philippe Loctaux 2023-05-17 22:49:53 +02:00
parent 955985e0ba
commit 58cb959ef4
2 changed files with 28 additions and 10 deletions

View file

@ -1,15 +1,15 @@
---
import Hero from "../components/hero.astro";
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<title>Philippe Loctaux</title>
</head>
<body>
<Hero />
</body>
</html>