import styled from "styled-components"; import { useTheme } from "../style/themes"; import { calculateAge } from "../utils/math"; import { asCardStack } from "../components/card-stack"; 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.

{asCardStack([ { content: `switch theme to ${theme.type === "light" ? "dark" : "light"}`, icon: "/icons/" + (theme.type === "light" ? "moon" : "sun") + ".svg", primary: theme.type === "light", onClick: toggleTheme } ])}

Some facts about me

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

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

; } const Heading = styled.h1` font-family: "Pacifico", serif; `; export default About;