import styled from "styled-components"; import { useTheme } from "../style/themes"; import { calculateAge } from "../utils/math"; import CardStack, { Item } from "../components/card-stack"; import Button from "../components/button"; const asCardStack = (items: Array) => ( typeof item === "string" ? { content: item } : item )} /> ); const About: React.FC = () => { const { years, months, days } = calculateAge(new Date(2007, 6, 25)); const { theme, toggleTheme } = useTheme(); return

Hello.

My name is Franek. I'm {years} years, {months} months and {days} days old.

Some facts about me

{asCardStack([ "introvert", "IT enthusiast", "automotive enthustiast" ])}

I can...

{asCardStack([ "play keyboard/organ", "mess with PCs from software to hardware", "code various apps and scripts" ])}

My favourite music genres are:

{asCardStack([ "black metal", "doom metal", "DSBM", "nu metal", "hard rock" ])}

I like these bands/singers:

{asCardStack([ "Mgła", "Behemoth", "Burzum", "Arkona", "Draconian", "Darkthrone", "Venom", "Slipknot", "None", "Lil Peep", "Alphaville", "MGMT", "ABBA", "Evanescence" ])}

yeah I know, I listen to a broad spectrum of music

Some links...

{asCardStack(LINKS)}
; } const AboutSection = styled.div` color: ${({ theme }) => theme.text}; &>h1 { font-family: "Pacifico", serif; } &>#margin-auto { margin: 0 auto; width: max-content; } `; const LINKS = [ { content: "PGP", icon: "/icons/pgp.svg", link: "/pgp.asc" }, { content: "E-mail", icon: "/icons/email.svg", link: "mailto:contact@sador.me?subject=[sador.me] ..." }, { content: "Gitea", icon: "/icons/gitea.svg", link: "https://git.sador.me" }, { content: "Matrix", icon: "/icons/matrix.svg", link: "https://matrix.to/#/@boss:sador.me" }, { content: "Instagram", icon: "/icons/instagram.svg", link: "https://instagram.com/sadorowo" } ]; export default About;