website/src/pages/index.astro

19 lines
459 B
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 15:30:42 +01:00
<main
class="h-screen flex justify-center items-center pointer-events-none cursor-none"
>
<Image
src={import("../public/logo.png")}
width={200}
height={200}
alt="descriptive text"
/>
<h1>xHyroM</h1>
</main>
2022-12-04 14:46:22 +01:00
</Layout>