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 <>
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 } ])}yeah I know, I listen to a broad spectrum of music
>; } const Heading = styled.h1` font-family: "Pacifico", serif; `; export default About;