diff --git a/src/pages/blog.astro b/src/pages/blog.astro index 8e841c3..0e3c1e7 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -6,5 +6,5 @@ import Layout from "../layouts/Layout.astro"; title="Blog" description="This is my personal website with my projects, docs and other useful stuff." > -
Blog
+
Blog (not finished yet)
diff --git a/src/pages/docs.astro b/src/pages/docs.astro index a4b2a61..6d714ee 100644 --- a/src/pages/docs.astro +++ b/src/pages/docs.astro @@ -6,5 +6,5 @@ import Layout from "../layouts/Layout.astro"; title="Docs" description="This is my personal website with my projects, docs and other useful stuff." > -
Docs
+
Docs (not finished yet)
diff --git a/src/pages/index.astro b/src/pages/index.astro index a43ebe2..74e7035 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -22,5 +22,22 @@ import "../styles/home.scss"; width="275px" /> +
+

+ Hello my name is Yannik!
+ I’m a 20 year old Game Developer living in Germany.
+ I mostly code in C++, Godot Engine's GDScript and C#.
+ I am mostly self taught but i cant really say when i began to learn + game developement.
+ Currently i already work at a game studio and i also have my own + game side projects and tools.
+ This website will mostly have docs, tutorials, and showcasing of + my projects.
+ Maybe also some other stuff all around the creative process of game + developement or completely unrelated stuff like cooking recepies + ;) +

+
diff --git a/src/pages/projects.astro b/src/pages/projects.astro index 52b8051..8fe36d0 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -6,5 +6,5 @@ import Layout from "../layouts/Layout.astro"; title="Projects" description="This is my personal website with my projects, docs and other useful stuff." > -
Projects
+
Projects (not finished yet)
diff --git a/src/pages/tutorials.astro b/src/pages/tutorials.astro index 495c3eb..f1e1c0e 100644 --- a/src/pages/tutorials.astro +++ b/src/pages/tutorials.astro @@ -6,5 +6,5 @@ import Layout from "../layouts/Layout.astro"; title="Tutorials" description="This is my personal website with my projects, docs and other useful stuff." > -
Tutorials
+
Tutorials (not finished yet)
diff --git a/src/styles/home.scss b/src/styles/home.scss index d02e1e1..f5907aa 100644 --- a/src/styles/home.scss +++ b/src/styles/home.scss @@ -1,6 +1,6 @@ .home-title-box { - padding-top: 10vh; - margin-left: 10vw; + position: absolute; + margin-top: 15vh; } .home-title { @@ -14,10 +14,17 @@ main { height: 75vh; margin-left: -1vw; margin-bottom: 13vh; - width: 100.4vw; + width: 90.4vw; flex-shrink: 0; + padding-left: 10vw; } .using-engines { display: inline-flex; +} + +.content { + position: absolute; + margin-left: 45vw; + margin-right: 8vw; } \ No newline at end of file diff --git a/src/styles/main.scss b/src/styles/main.scss index 85dce4c..242ee4b 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -17,8 +17,17 @@ h1 { .content { background-color: $highlight-primary; - margin: 10vw; - margin-right: 30vw; - padding: 2vw; border-radius: 25px; + box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); + display: flex; + padding: 1.8vw; + justify-content: center; + align-items: center; + flex-shrink: 0; + margin: 5vw; +} + +b { + font-family: "Satoshi-Bold"; + color: $accent; } \ No newline at end of file