This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/src/pages/index.astro

46 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import Layout from "../layouts/Layout.astro";
import "../styles/home.scss";
---
<Layout
title="Home"
description="This is my personal website with my projects, docs and other useful stuff."
>
<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>
<div class="content">
<p>
Hello my name is <b>Yannik</b>!<br />
Im a 20 year old <b>Game Developer</b> living <b>in Germany</b
>.<br />
I mostly code in C++, Godot Engine's GDScript and C#.<br />
I am mostly self taught but i cant really say when i began to learn
game developement.<br />
Currently i already work at a game studio and i also have my own
game side projects and tools.<br />
This website will mostly have <a href="/docs">docs</a>,
<a href="/tutorials">tutorials</a>, and showcasing of my
<a href="/projects">projects</a>. Maybe also some other stuff
all around the creative process of game developement or
completely unrelated stuff like cooking recepies in my <a
href="/blog">blog</a
> ;)
</p>
</div>
</main>
</Layout>