forked from oss-apps/split-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.jsx
36 lines (33 loc) · 1.15 KB
/
theme.config.jsx
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
36
/* eslint-disable @typescript-eslint/ban-ts-comment */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
import Link from 'next/link';
import { Separator } from '~/components/ui/separator';
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
const config = {
footer: (
<div className="mt-20 flex items-center justify-center gap-4">
<Link href="https://splitpro.app/balances" target="_blank">
App
</Link>
<Separator orientation="vertical" className="h-5" />
<Link href="https://github.com/oss-apps/split-pro" target="_blank">
Github
</Link>
<Separator orientation="vertical" className="h-5" />
<Link href="https://www.producthunt.com/products/splitpro/reviews/new" target="_blank">
Product Hunt
</Link>
</div>
),
// @ts-expect-error
head: ({ title, meta }) => (
<>
{meta.description && <meta name="description" content={title} />}
{meta.tag && <meta name="keywords" content={meta.tag} />}
{meta.author && <meta name="author" content={meta.author} />}
</>
),
readMore: 'Read More →',
postFooter: null,
};
export default config;