-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy paththeme.config.tsx
More file actions
37 lines (36 loc) · 905 Bytes
/
theme.config.tsx
File metadata and controls
37 lines (36 loc) · 905 Bytes
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
import React from 'react'
export default {
logo: <span>Happy</span>,
project: {
link: 'https://github.com/your-username/happy-coder',
},
docsRepositoryBase: 'https://github.com/your-username/happy-coder',
footer: {
text: 'Happy - Claude Code Mobile Client',
},
useNextSeoProps() {
return {
titleTemplate: '%s – Happy'
}
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Happy - Claude Code Mobile Client" />
<meta property="og:description" content="Free, open-source mobile app for Claude Code" />
</>
),
// Navigation configuration
navigation: {
prev: true,
next: true,
},
// Sidebar configuration
sidebar: {
defaultMenuCollapseLevel: 1,
toggleButton: true,
},
// Theme configuration
primaryHue: 210,
primarySaturation: 100,
}