-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.ts
161 lines (160 loc) · 4.99 KB
/
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
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
import { Config } from './src/lib/config.types';
export const config: Config = {
runtime: 'nodejs',
themeColor: "#5789f6",
logoURL: "/images/logo.png",
site: {
url: "https://www.skvad.eu/",
title: "SKVAD Community",
twitter: {
site: "@site",
creator: "@creator",
card: "summary_large_image",
images: [
{
url: "/images/marketing/banner.png",
alt: "Marketing Banner for SKVAD Community",
},
],
},
},
pages: {
home: {
title: "Home | SKVAD Community",
description: "Welcome to the SKVAD Community! We are a DayZ community that is dedicated to providing the best experience for our players. Join us today!",
sections: {
network: {
title: "Server Network",
description: "Our DayZ servers are hosted in Europe and are maintained by our dedicated team of developers and system administrators.",
},
about: {
title: "About Us",
description: "We are a community of DayZ players who are passionate about the game and the experiences it provides. We strive to provide a safe and enjoyable environment for all players.",
rows: {
1: {
title: "Events",
description: "We host regular events and competitions for our players to participate in. These events are a great way to meet new people and have fun in the game.",
image: {
url: "/images/about/events.jpg",
alt: "Events Image",
},
},
2: {
title: "Community",
description: "We believe that a strong community is the key to a successful server. We work hard to foster a positive and inclusive community for all players.",
image: {
url: "/images/about/community.jpg",
alt: "Community Image",
},
},
3: {
title: "Development",
description: "Our team of developers are constantly working to improve the server and add new features. We welcome feedback and suggestions from our players.",
image: {
url: "/images/about/development.png",
alt: "Development Image",
},
},
},
},
leaderboard: {
title: "Leaderboard",
description: "Check out the top players on our servers and see how you compare. Can you make it to the top of the leaderboard?",
},
contact: {
title: "Contact Us",
description: "If you have any questions or concerns, please don't hesitate to contact us through the following channels.",
links: {
'Discord': "https://discord.gg/skvad",
'Email': "mailto:info@skvad.eu",
},
},
},
},
},
hero: {
title: "We listen, we learn, we deliver.",
description: "Our DayZ Community is built on the principles of transparency, integrity, and trust. We are committed to providing the best experience for our players. Wether you are a seasoned veteran or a new player, we have a place for you.",
background: {
color: 'rgb(51 65 85)',
image: {
url: "/images/hero.jpg",
alt: "Hero Image",
},
},
cta: {
label: "Join us today!",
href: "https://discord.gg/mirasaki",
},
},
servers: [
{
name: 'SKVAD EU1',
ipv4: '193.25.252.92',
gamePort: 2302,
steamQueryPort: 27016,
cftoolsApiId: '7732f152-3b6b-4da5-9356-b43ebfef2012',
},
{
name: 'SKVAD EU2',
ipv4: '193.25.252.24',
gamePort: 2302,
steamQueryPort: 27016,
cftoolsApiId: '40dfcdf1-2e38-4a86-8b36-f02e4c868bf5',
},
{
name: 'SKVAD EU3',
ipv4: '193.25.252.24',
gamePort: 2402,
steamQueryPort: 27017,
cftoolsApiId: '16c3c8d1-9e15-4729-a541-8a578288e43d',
},
],
cftools: {
leaderboard: {
enabled: true,
defaultSortValue: 'kills',
allowedSortValues: ['kills', 'deaths', 'kdratio', 'longest_kill', 'longest_shot', 'playtime', 'suicides'],
blacklistedCFToolsIds: [],
showAmount: 100,
},
},
footer: {
trademarkNotice: "The DayZ logo is a registered trademark of Bohemia Interactive a.s. SKVAD is not affiliated with Bohemia Interactive a.s. or DayZ. All other trademarks are the property of their respective owners.",
brandingName: "SKVAD Community",
brandingURL: '/',
initialCopyrightYear: 2021,
copyrightBrandName: "SKVAD",
copyrightBrandUrl: '/',
links: [
{
url: '#',
label: 'About',
},
{
url: '#',
label: 'Meet the Team',
},
{
url: '#',
label: 'Campaigns',
},
{
url: '#',
label: 'Blog',
},
{
url: '#',
label: 'Affiliate Program',
},
{
url: '#',
label: 'FAQs',
},
{
url: '#',
label: 'Contact',
},
],
},
};