-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.jsx
40 lines (39 loc) · 1.55 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
import LatticeImage from "./components/LatticeImage"
export default {
docsRepositoryBase: 'https://github.com/loosetooth/epola-space-nextra/tree/main/',
logo: <>
<LatticeImage width="50px" />
<span style={{ marginLeft: '1rem', fontWeight: 800 }}>
The Electron-Positron Lattice Space
</span>
</>,
project: {
link: 'https://github.com/loosetooth/epola-space-nextra'
},
footer: {
text: (
<span style={{ margin: "auto" }}>
Copyright © M. Simhony
</span>
)
},
sidebar: {
defaultMenuCollapseLevel: 2
},
toc: {
float: true
},
search: {
placeholder: "Search"
},
head: (
<>
<meta property="og:title" content="The Electron-Positron Lattice Space" />
<meta property="og:description" content="This book is designed for readers with a basic understanding of physics. It offers an alternative approach to contemporary physics, focusing on the electron-positron lattice model. This model helps explain complex physical phenomena, derive fundamental laws, and perform calculations that may seem challenging in traditional presentations. If you're looking for a more accessible way to explore these topics and understand the 'whys' behind them, this book might be a valuable resource for you." />
<meta property="og:image" content="/epola/meta-image.png" />
<link rel="icon" type="image/png" href="/epola/favicon.png"></link>
<script defer data-domain="codebenchers.com" data-api="/epola/api/event" src="/epola/js/script.js"></script>
</>
)
// ... other theme options
}