-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
30 lines (27 loc) · 1003 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
/** @jsx h */
import blog, { ga, redirects, h } from "blog";
blog({
title: "ricky_ra",
// description: "This is my new blog.",
// header: <header>Your custom header</header>,
// section: (post: Post) => <section>Your custom section with access to Post props.</section>,
// footer: <footer>Your custom footer</footer>,
avatar: "./ra.png",
avatarClass: "rounded-full",
author: "An author",
links: [
// seharusnya emailnya email work/domain
{ title: "Email", url: "mailto:rickyraihan83@gmail.com" },
{ title: "GitHub", url: "https://github.com/rickyraz" },
{ title: "Twitter", url: "https://twitter.com/ricky_ra_" },
],
middlewares: [
// If you want to set up Google Analytics, paste your GA key here.
ga("G-F0KVTY705D"),
// If you want to provide some redirections, you can specify them here,
// pathname specified in a key will redirect to pathname in the value.
// redirects({
// "/hello_world.html": "/hello_world",
// }),
],
});