- Hello.
+ 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",
@@ -74,27 +64,19 @@ const About: React.FC = () => {
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 Heading = styled.h1`
+ font-family: "Pacifico", serif;
`;
const LINKS = [
{
content: "PGP",
icon: "/icons/pgp.svg",
- link: "/pgp.asc"
+ link: "/pgp.asc",
+ primary: true
},
{
content: "E-mail",
diff --git a/src/sections/tools.tsx b/src/sections/tools.tsx
new file mode 100644
index 0000000..3dcb961
--- /dev/null
+++ b/src/sections/tools.tsx
@@ -0,0 +1,59 @@
+import { asCardStack } from "../components/card-stack";
+
+const Tools: React.FC = () => {
+ return <>
+