finished navbar and continued home

This commit is contained in:
2024-01-30 23:16:05 +01:00
parent 82e1635a16
commit 2f94f4854a
16 changed files with 1415 additions and 2546 deletions

10
src/pages/blog.astro Normal file
View File

@@ -0,0 +1,10 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout
title="Blog"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>Blog</main>
</Layout>

10
src/pages/docs.astro Normal file
View File

@@ -0,0 +1,10 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout
title="Docs"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>Docs</main>
</Layout>

View File

@@ -7,10 +7,20 @@ import "../styles/home.scss";
title="Home"
description="This is my personal website with my projects, docs and other useful stuff."
>
<div class="home-title-box">
<h1 class="home-title" style="font-size: 6.5vw;">vaporvee</h1>
<h2 class="home-title" style="font-size: 2vw; margin-top: -25px;">
Making video games
</h2>
</div>
<main>
<div class="home-title-box">
<h1 class="home-title" style="font-size: 6vw;">vaporvee</h1>
<h2
class="home-title"
style="font-size: 2vw; margin-top: -10px; margin-bottom: 12vh;"
>
Making video games
</h2>
<img
src="/using_engines.svg"
alt="engines I'm using"
width="275px"
/>
</div>
</main>
</Layout>

10
src/pages/projects.astro Normal file
View File

@@ -0,0 +1,10 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout
title="Projects"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>Projects</main>
</Layout>

10
src/pages/tutorials.astro Normal file
View File

@@ -0,0 +1,10 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout
title="Tutorials"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>Tutorials</main>
</Layout>