-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.tsx
More file actions
61 lines (57 loc) · 1.58 KB
/
Copy paththeme.config.tsx
File metadata and controls
61 lines (57 loc) · 1.58 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import Image from 'next/image'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
logo: (
<div className="flex items-center">
<Image
src="/bunny_logo.png"
alt="logo"
width={40}
height={40}
/>
</div>
),
project: {
link: 'https://github.com/demola234/flutter_bunny_cli/',
},
docsRepositoryBase: 'https://github.com/demola234/flutter_bunny_cli/docs',
footer: {
text: 'Flutter Bunny CLI Docs',
},
head: () => (
<>
<link rel="icon" type="image/png" href="/bunny_logo.png" />
</>
),
useNextSeoProps() {
return {
titleTemplate: '%s - Flutter Bunny CLI',
defaultTitle: 'Flutter Bunny CLI - A Flutter Development Tool',
description: 'A powerful CLI tool for creating and managing Flutter applications with best practices and consistent architecture',
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://www.flutterbunny.xyz/',
site_name: 'Flutter Bunny CLI',
title: 'Flutter Bunny CLI - A Flutter Development Tool',
description: 'A powerful CLI tool for creating and managing Flutter applications with best practices and consistent architecture',
images: [
{
url: 'https://www.flutterbunny.xyz/bunny_logo.png',
width: 1200,
height: 630,
alt: 'Flutter Bunny CLI',
}
],
},
}
},
darkMode: true,
nextThemes: {
defaultTheme: 'system',
},
sidebar: {
defaultMenuCollapseLevel: 1,
},
}
export default config