feat: add about page

This commit is contained in:
log101 2024-06-21 20:21:15 +03:00
parent 2885cd1b86
commit a2c28ef377
2 changed files with 12 additions and 1 deletions

View File

@ -4,5 +4,5 @@
<div class="flex flex-row items-center gap-2 text-gray-500 text-sm"> <div class="flex flex-row items-center gap-2 text-gray-500 text-sm">
<p class="copyright">© 2024 Furkan Erdem</p> <p class="copyright">© 2024 Furkan Erdem</p>
<a class="text-inherit" href="#">Hakkımda</a> <a class="text-inherit" href="/about">Hakkımda</a>
</div> </div>

11
src/pages/about.astro Normal file
View File

@ -0,0 +1,11 @@
---
import Header from "@/components/Header.astro";
import Footer from "@/components/Footer.astro";
import Layout from "@/layouts/Layout.astro";
---
<Layout title="log101">
<Header />
<p>Hakkımda</p>
<Footer />
</Layout>