finished navbar and continued home
This commit is contained in:
10
src/pages/blog.astro
Normal file
10
src/pages/blog.astro
Normal 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
10
src/pages/docs.astro
Normal 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>
|
@@ -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
10
src/pages/projects.astro
Normal 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
10
src/pages/tutorials.astro
Normal 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>
|
Reference in New Issue
Block a user