mirror of
https://github.com/kou029w/_.git
synced 2025-04-07 05:16:27 +00:00
38 lines
872 B
Text
38 lines
872 B
Text
---
|
|
import Tour from '../components/Tour.astro';
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Astro</title>
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
|
|
<link rel="stylesheet" href="/style/global.css">
|
|
<link rel="stylesheet" href="/style/home.css">
|
|
|
|
<style>
|
|
header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
max-width: min(100%, 68ch);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<div>
|
|
<img width="60" height="80" src="/assets/logo.svg" alt="Astro logo">
|
|
<h1>Welcome to <a href="https://astro.build/">Astro</a></h1>
|
|
</div>
|
|
</header>
|
|
|
|
<Tour />
|
|
</main>
|
|
</body>
|
|
</html>
|