Some styling updates

This commit is contained in:
SkyfallWasTaken 2024-07-07 20:39:35 +01:00
parent 3d317a8a45
commit 7ac96c3260
3 changed files with 9 additions and 4 deletions

View file

@ -5,7 +5,9 @@ import Twitter from "./socialIcons/Twitter.astro";
const today = new Date();
---
<footer class="bg-crust text-text flex flex-col items-center py-4">
<footer
class="bg-crust text-text flex flex-col items-center py-4 bottom-0 w-full"
>
&copy; {today.getFullYear()} Skyfall. All rights reserved.
<div class="flex flex-row gap-3 m-2">
<Twitter />

View file

@ -13,10 +13,10 @@ import Button from "../components/ui/Button.astro";
</head>
<body>
<Header />
<main class="bg-base text-text px-12 py-12">
<div class="flex flex-col gap-4 w-1/3">
<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>
<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

View file

@ -0,0 +1,3 @@
body {
@apply bg-base;
}