-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
203 lines (192 loc) · 6.06 KB
/
Copy pathdocusaurus.config.ts
File metadata and controls
203 lines (192 loc) · 6.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import { themes as prismThemes } from 'prism-react-renderer';
import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'Deltisan Engineering',
tagline: 'We design and build things that last.',
favicon: 'img/favicon.png',
future: {
v4: true,
},
url: 'https://deltisan.com',
baseUrl: '/',
markdown: {
format: 'detect',
},
organizationName: 'qiaben',
projectName: 'deltisan-com-web',
onBrokenLinks: 'warn',
headTags: [
{
tagName: 'script',
attributes: { type: 'application/ld+json' },
innerHTML: JSON.stringify({
'@context': 'https://schema.org',
'@type': 'Organization',
'@id': 'https://deltisan.com/#organization',
name: 'Deltisan Engineering LLC',
legalName: 'Deltisan Engineering LLC',
url: 'https://deltisan.com',
logo: 'https://deltisan.com/img/logo.png',
image: 'https://deltisan.com/img/logo.png',
email: 'info@deltisan.com',
telephone: '+1-720-666-0405',
address: {
'@type': 'PostalAddress',
streetAddress: '6222 E Pine Lane, Suite 6212 #1075',
addressLocality: 'Parker',
addressRegion: 'CO',
postalCode: '80138',
addressCountry: 'US',
},
location: [
{
'@type': 'Place',
name: 'Deltisan Engineering LLC — US sales & contracting',
address: {
'@type': 'PostalAddress',
streetAddress: '6222 E Pine Lane, Suite 6212 #1075',
addressLocality: 'Parker',
addressRegion: 'CO',
postalCode: '80138',
addressCountry: 'US',
},
},
{
'@type': 'Place',
name: 'Deltisan Engineering — Coimbatore head office (India)',
address: {
'@type': 'PostalAddress',
streetAddress: '1/39, Veerappanur',
addressLocality: 'Coimbatore',
addressRegion: 'TN',
postalCode: '641105',
addressCountry: 'IN',
},
},
],
areaServed: [
{ '@type': 'Country', name: 'United States' },
{ '@type': 'Country', name: 'Canada' },
{ '@type': 'Country', name: 'United Kingdom' },
{ '@type': 'Place', name: 'European Union' },
{ '@type': 'Country', name: 'Australia' },
{ '@type': 'Country', name: 'India' },
],
sameAs: ['https://deltisan.com'],
description:
'Deltisan Engineering LLC is a Colorado-registered precision-engineering company offering CNC machining, sheet-metal fabrication, welding, and surface finishing. Production happens in India, coordinated from our Coimbatore head office, and is exported worldwide to aerospace, oil-and-gas, and industrial OEM customers.',
}),
},
],
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: false,
blog: {
path: 'blog',
routeBasePath: 'blog',
showReadingTime: true,
blogTitle: 'Deltisan Journal',
blogDescription: 'Notes from the workshop — DFM, fabrication, finishing, and quality.',
blogSidebarTitle: 'Recent posts',
blogSidebarCount: 'ALL',
postsPerPage: 6,
sortPosts: 'descending',
feedOptions: {
type: ['rss', 'atom'],
xslt: true,
title: 'Deltisan Journal',
description: 'Notes from the workshop.',
},
onInlineTags: 'ignore',
onInlineAuthors: 'ignore',
onUntruncatedBlogPosts: 'ignore',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'img/deltisan-social-card.jpg',
colorMode: {
defaultMode: 'light',
respectPrefersColorScheme: true,
},
navbar: {
title: 'Deltisan',
logo: {
alt: 'Deltisan Engineering',
src: 'img/logo-navbar.png',
},
items: [
{ to: '/capabilities', label: 'Capabilities', position: 'left' },
{ to: '/products', label: 'Products', position: 'left' },
{ to: '/process', label: 'Process', position: 'left' },
{ to: '/blog', label: 'Journal', position: 'left' },
{ to: '/company', label: 'Company', position: 'left' },
{
href: 'tel:+17206660405',
label: '+1 720-666-0405',
position: 'right',
className: 'navbar-phone',
},
{
href: 'mailto:info@deltisan.com',
label: 'info@deltisan.com',
position: 'right',
className: 'navbar-email',
},
{ to: '/contact', label: 'Contact', position: 'right' },
{
to: '/quote',
label: 'Get a quote',
position: 'right',
className: 'navbar-cta',
},
],
},
footer: {
style: 'light',
links: [
{
title: 'Work',
items: [
{ label: 'Capabilities', to: '/capabilities' },
{ label: 'Products', to: '/products' },
{ label: 'Process', to: '/process' },
{ label: 'Journal', to: '/blog' },
],
},
{
title: 'Company',
items: [
{ label: 'About', to: '/company' },
{ label: 'Book a call', to: '/schedule' },
{ label: 'Contact', to: '/contact' },
],
},
{
title: 'Legal',
items: [
{ label: 'Privacy', to: '/privacy' },
{ label: 'Terms', to: '/terms' },
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Deltisan Engineering LLC · 6222 E Pine Lane, Suite 6212 #1075, Parker, CO 80138 · +1 720-666-0405 · info@deltisan.com`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;