-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
35 lines (28 loc) · 834 Bytes
/
main.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/** @jsx h */
import blog, { h } from "blog";
blog({
author: "Dima Pristupa",
avatar: "avatar.png",
avatarClass: "rounded-full",
title: "Dima Pristupa",
description:
"A Kyiv-based SDE in love with Rust, TypeScript, C++, Python, Haskell and GNU/Linux",
links: [
{ title: "Email", url: "mailto:[email protected]" },
{ title: "LinkedIn", url: "https://www.linkedin.com/in/dima-pristupa/" },
{ title: "GitHub", url: "https://github.com/s373r" },
{
title: "CV",
url:
"https://raw.githubusercontent.com/s373r/cv/main/CV_Dima_Pristupa_2023.pdf",
icon: <div className="font-bold">CV</div>,
},
],
// NOTE(DP): Remove when posts are added
footer: <div />,
// NOTE(DP): Custom style:
style: `
/* Make avatar bigger */
a.bg-cover { width: 9rem; height: 9rem }
`,
});