feat: add about page
This commit is contained in:
parent
2885cd1b86
commit
a2c28ef377
|
@ -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
11
src/pages/about.astro
Normal 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>
|
Loading…
Reference in New Issue
Block a user