diff --git a/src/pages/index.astro b/src/pages/index.astro index 4f18728..545ddf0 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,604 +1,166 @@ --- import Layout from "../layouts/Layout.astro"; -import { Image } from "astro:assets"; -import { getCollection } from "astro:content"; -const allPosts = await getCollection("posts"); +import IndexBackground from "../components/IndexBackground.astro"; +import RecentPosts from "../components/RecentPosts.astro"; --- -
-
-                                                         .,,uod8B8bou,,.
-                                             ..,uod8BBBBBBBBBBBBBBBBRPFT?l!i:.
-                                        ,=m8BBBBBBBBBBBBBBBRPFT?!||||||||||||||
-                                        !...:!TVBBBRPFT||||||||||!!^^""'   ||||
-                                        !.......:!?|||||!!^^""'            ||||
-                                        !.........||||                     ||||
-                                        !.........||||                     ||||
-                                        !.........||||                     ||||
-                                        !.........||||                     ||||
-                                        !.........||||                     ||||
-                                        !.........||||                     ||||
-                               ┌───┐_____`........||||                    ,||||
-                            ┌─ │__.│..uoo.;.......||||              __.-!!|||||
-                            ┌─.┘...,uodWBBBBb.....||||       _.-|||||||||||!:'
-                         .,uoo~~ !YBBBBBBBBBBBBBBb..!|||:|||!!|||||||!iof68BBBBBb....
-                     ..,uoo~~~   !..YBBBBBBBBBBBBBBb!!||||||||!iof68BBBBBBRPFT?!::   `.
-                ..,uoo~~~~~      !....YBBBBBBBBBBBBBBbaaitf68BBBBBBRPFT?!:::::::::     `.
-           ..,uoo~~~~~           !......YBBBBBBBBBBBBBBBBBBBRPFT?!::::::;:!^"`;:::       `.
-       ..,uoo~~~~"               !........YBBBBBBBBBBRPFT?!::::::::::^'' ..::::::;         iBBbo.
-  ..,uoo~~~~"                    ...........YPFT?!::::::::::::::::::::::::;iof68bo.        WBBBBbo.
-.,u~~~~~~             ,###,      `..........:::::::::::::::::::::::;iof688888888888b.      `YBBBP^'
-~~~               ,#BBBBBB8b.      `........::::::::::::::::;iof688888888888888888888b.      `
-               "BBBBB"BBBB"""#       `......:::::::::;iof688888888888888888888888888888b.
-          #BBBBB B:BBB::BB BB"8b.      `....:::;iof688888888888888888888888888888888899fT!
-       ##"B:"B:BBB:::::-BBBBB B"8b.      `..::!8888888888888888888888888888888899fT|!^"'
-        `!!8BB:::::`B:BBBBB:BBBBBB8b.      `' !!988888888888888888888888899fT|!^"'
-         `!!8BBBB:BBBBB:::::BBB:BBB"8b.        `!!8888888888888888899fT|!^"'
-           `!!8   ::::::::BBBBBB  BBB"8b.        `!988888888899fT|!^"'
-             `!!8BB ,BB:BBB:`b BB:BBBB"B8b.        `!9899fT|!^"'
-               `!!8 BBBBB::B:::::BBBBBB  B8b.        `!^"'
-            _    `!!8B ::::::B BB:B  B"fT|!^"
-            *Bb.   `!!8 BBBBBBBBB"fT|!^"'
-              *Bb.   `!!8 ::BBfT|!^"'
-                *Bb.   `!!8|!^"'
-                  *Bb.   ""
-                    *Bb.
-		
- hello world - -> PRESS 'G' <- - _ - +
+

+ steken +

+

+ .dev +

-
-
-
-
+
+ +
+

steken.dev

this is stefan's personal website

- stefan kenichiro nowak, specifically + stefan kenichiro nowak, specifically – hopefully that's the Stefan you were looking for.

stefan is a software engineer with over a half-decade of experience working with london-ey tech-y companies big and - small. so far, he has yet to bring down production for any + small.
+ so far, he has yet to bring down production for any more than a few hours at any one time. +
stefan lives with his partner, harriet, and their son, cassius, - in south-west london, uk 🇬🇧 + in south-west london, uk 🇬🇧

+ +

introduction

+

+ Hey there! +

+

+ I'm Stefan–father of a small, brand-new human; pretty + alright software engineer; barely-functional caffiene + addict; overly-enthusiastic tech nerd; + midnight gourmand; + armchair film critic and much more. +

+

+ This is a little website built using the Astro framework as a public home for my thoughts and projects. +

+ +

what you'll find here

+

+ ⚠️ This site is a continuous work in progress as I learn to work + with Astro. Expect things to break all the time! +

+

+ Expect to find a mix of blog posts, project + write-ups, and other random musings. If you're looking to + hire a software engineer, you can check out the work page for more information about me, and to see if I might be + a good fit for your team. For now, you can read all my rambling + over on the posts page, or see some of my + recent posts below. +

+
-
-
-
-

introduction

-

- Hey there! -

-

- I'm Stefan–father of a small, brand-new human; pretty alright - software engineer; barely-functional caffiene addict; - overly-enthusiastic tech nerd; - midnight gourmand; - armchair film critic and much more. -

-

- This is a little website built using the Astro framework as a public home for my thoughts and projects. -

-
-
-

what you'll find here

-

- ⚠️ This site is still a work in progress as I learn to work with - Astro. -

-

- You can expect to find a mix of blog posts, project write-ups, - and other random musings. If you're looking to hire a software - engineer, you can check out the work page for - more information about me, and to see if I might be a good fit for - your team. For now, you can read all my rambling over on the posts page, or see some of my recent posts below. -

-
-
-

recent posts

-
- { - allPosts.slice(0, 3).map((post) => ( -
-
- - {post.data.title} - -

{post.data.description}

- -
-
- - {post.data.imageAlt} - -
-
- )) - } -
-
-
+
- - - - diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index 6cc933c..dff9dfd 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -272,7 +272,6 @@ const { Content, headings } = await entry.render(); font-size: clamp(3.6rem, 5vw, 8rem); text-shadow: none; margin: auto; - font-family: system-ui, sans-serif; padding: 0rem 1rem; text-shadow: -1px 2px 20px #00024478;