-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
theme.config.jsx
58 lines (58 loc) Β· 1.58 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export default {
logo: (
<>
<svg
width="215"
height="215"
viewBox="0 0 215 215"
fill="none"
xmlns="http://www.w3.org/2000/svg"
style={{ width: "25px", height: "25px" }}
>
<path d="M65.5 87.5L130.452 199.5H1L65.5 87.5Z" fill="white" />
<path d="M75.5 70L107.5 15L214 199.5H150.5L75.5 70Z" fill="white" />
</svg>
<span style={{ marginLeft: "1rem", fontWeight: 500 }}>
AI Engineer Guide
</span>
</>
),
project: {
link: "https://github.com/athivvat/ai-engineer-guide",
},
head: (
<>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon/favicon-16x16.png"
/>
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<link
rel="mask-icon"
href="/favicon/safari-pinned-tab.svg"
color="#000000"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="AI Engineer Guide" />
<meta
property="og:description"
content="A Roadmap to Becoming an AI Engineer β From Zero to AI Engineer"
/>
</>
),
docsRepositoryBase: 'https://github.com/athivvat/ai-engineer-guide/tree/main'
};