-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhero-options.ts
42 lines (42 loc) · 1.22 KB
/
hero-options.ts
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
export const heroOptions = {
'/': {
imgBg: '/images/home-bg.webp',
imgAlt: 'Homepage',
title: 'Web Dev Path is about',
dynamicTitles: ['community', 'learning', 'growth', 'teamwork'],
content:
'We help junior tech professionals, such as developers and designers, to grow.',
},
'/about': {
imgBg: '/images/about-us-bg.webp',
imgAlt: 'About Us',
title: 'About Us',
hasAccent: true,
content:
'While the demand for web developers only increases, becoming one can be quite a journey!',
},
'/contact': {
imgBg: '/images/about-us-bg.webp',
imgAlt: 'Contact Us',
title: 'Contact Us',
hasAccent: true,
content: `We'd like to hear from you!
Send us your questions and we'll get back to you as soon as possible.`,
},
'/blog': {
imgBg: '/images/about-us-bg.webp',
imgAlt: 'Blog',
title: 'Our Blog',
hasAccent: true,
content:
'We help junior tech professionals, such as developers and designers, to grow.',
},
'/404': {
imgBg: '/images/about-us-bg.webp',
imgAlt: 'Not Found',
title: 'Not Found',
hasAccent: true,
content:
'We help junior tech professionals, such as developers and designers, to grow.',
},
};