website/src/pages/index.astro

38 lines
1.1 KiB
Text
Raw Normal View History

2022-12-04 14:46:22 +01:00
---
2022-12-04 15:30:42 +01:00
import Layout from "../layouts/Layout.astro";
import { Image, Picture } from "@astrojs/image/components";
2022-12-04 14:46:22 +01:00
---
<Layout title="Welcome to Astro.">
2022-12-04 19:59:41 +01:00
<header>
<nav
class="text-white font-light text-2xl flex items-center justify-center"
>
<ul class="flex w-96 justify-evenly py-3">
<li>
<a href="/" class="hover:text-[#fbc119] hover:underline"
>Projects</a
>
</li>
<li>
<a
href="/about"
class="hover:text-[#fbc119] hover:underline">Docs</a
>
</li>
</ul>
</nav>
</header>
2022-12-04 15:30:42 +01:00
<main
2022-12-04 19:59:41 +01:00
class="mt-64 flex justify-center items-center flex-col pointer-events-none cursor-none"
2022-12-04 15:30:42 +01:00
>
<Image
src={import("../public/logo.png")}
width={200}
height={200}
alt="descriptive text"
/>
2022-12-04 19:59:41 +01:00
<h1 class="text-white font-extrabold text-6xl">xHyroM</h1>
2022-12-04 15:30:42 +01:00
</main>
2022-12-04 14:46:22 +01:00
</Layout>