skyfalldev/src/pages/index.astro
2024-07-07 20:44:35 +01:00

34 lines
1 KiB
Text

---
import BaseHead from "../components/BaseHead.astro";
import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro";
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
import Button from "../components/ui/Button.astro";
---
<!doctype html>
<html lang="en">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
<body>
<Header />
<main class="text-text px-12 py-12">
<div class="flex flex-col gap-4 w-[40%]">
<h1 class="text-5xl font-bold">Hi there! 👋</h1>
<p class="text-xl">
Hey there! I'm Mahad, a software engineer and a tech enthusiast. I
love to build things and share my knowledge with others! I'm currently
working on a few projects and writing blog posts about them. Stay
tuned!
</p>
<div class="flex flex-row gap-2">
<Button>
<a href="/blog">Read my blog</a>
</Button>
</div>
</div>
</main>
<Footer />
</body>
</html>