website/src/pages/index.astro

21 lines
539 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";
2022-12-06 12:49:18 +01:00
import Socials from "../components/widgets/Socials.astro";
import Navbar from "../components/widgets/Navbar.astro";
2022-12-04 15:30:42 +01:00
import { Image, Picture } from "@astrojs/image/components";
2022-12-04 14:46:22 +01:00
---
<Layout title="Welcome to Astro.">
2022-12-06 12:49:18 +01:00
<Navbar />
<main class="mt-64 flex justify-center items-center">
2022-12-04 15:30:42 +01:00
<Image
src={import("../public/logo.png")}
width={200}
height={200}
alt="descriptive text"
/>
2022-12-06 12:49:18 +01:00
<Socials />
2022-12-04 15:30:42 +01:00
</main>
2022-12-04 14:46:22 +01:00
</Layout>