-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
117 lines (117 loc) · 3.07 KB
/
app.config.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
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
export default defineAppConfig({
title: 'Photosnap',
navigation: {
shared: {
logo: {
src: 'logo/dark.svg',
alt: 'Photosnap logo',
href: '/',
},
links: [
{ text: 'Stories', href: '/stories' },
{ text: 'Features', href: '/features' },
{ text: 'Pricing', href: '/pricing' },
],
cta: {
text: 'Get an invite',
href: '/',
},
},
footer: {
links: [{ text: 'Home', href: '/' }],
logo: {
src: 'logo/light.svg',
alt: 'Photosnap logo',
href: '/',
},
social: [
{
icon: 'Facebook',
href: 'https://www.facebook.com',
},
{
icon: 'Youtube',
href: 'https://www.youtube.com',
},
{
icon: 'twitter',
href: 'https://www.twitter.com',
},
{
icon: 'Pinterest',
href: 'https://www.pinterest.com',
},
{
icon: 'Instagram',
href: 'https://www.instagram.com',
},
],
},
},
layout: {
callToAction: {
title: 'We’re in beta. Get your invite today!',
cta: {
text: 'Get an invite',
href: '/',
},
image: 'rocks.png',
},
},
pages: {
home: {
blocks: [
{
title: 'Create and share your photo stories.',
subtitle:
'Photosnap is a platform for photographers and visual storytellers. We make it easy to share photos, tell stories and connect with others.',
cta: {
text: 'Get an invite',
href: '/',
},
image: 'pier.png',
},
{
title: 'BEAUTIFUL STORIES EVERY TIME',
subtitle:
'We provide design templates to ensure your stories look terrific. Easily add photos, text, embed maps and media from other networks. Then share your story with everyone.',
cta: {
text: 'Veiw the stories',
href: '/stories',
},
image: 'laptop.png',
},
{
title: 'DESIGNED FOR EVERYONE',
subtitle:
'Photosnap can help you create stories that resonate with your audience. Our tool is designed for photographers of all levels, brands, businesses you name it.',
cta: {
text: 'Veiw the stories',
href: '/stories',
},
image: 'cameraman.png',
},
],
},
features: {
blocks: [
{
title: 'Features',
subtitle:
'We make sure all of our features are designed to be loved by every aspiring and even professional photograpers who wanted to share their stories.',
image: 'camera_leg.png',
},
],
},
pricing: {
blocks: [
{
title: 'Pricing',
subtitle:
'Create a your stories, Photosnap is a platform for photographers and visual storytellers. It’s the simple way to create and share your photos.',
image: 'silouete.png',
},
],
},
},
});