forked from codex-iter/website-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.js
50 lines (48 loc) · 1.67 KB
/
site.config.js
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
const shared = {
name: "Codex",
repo: "https://github.com/codex-iter/website-frontend",
website: "http://codex-frontend.vercel.app",
title: "Codex - We code, we explore",
description: "We are a group of motivated coders from ITER who wish to create an environment for anyone who wishes to begin their coding journey.",
image: "http://codex-frontend.vercel.app/banner.jpg",
};
const siteConfig = {
name: shared.name,
image: shared.image,
type: "website",
title: shared.title,
titleTemplate: "%s - Codex",
description: shared.description,
stats: {
members: 120,
commits: 2.3,
projects: 38,
workshops: 18,
},
newsletterUrl: "https://docs.google.com/forms/d/e/1FAIpQLSdOp_wsPsjwFvxhSRECAxBsUGeL2s4cjJ1SghNLgNPg7f8bHQ/viewform",
siteUrl: shared.website,
contacts: {
instagram: "https://www.instagram.com/codexiter",
youtube: "https://www.youtube.com/channel/UCu1S3gm2ODknxDlkpPX2RrA",
github: "https://github.com/codex-iter",
facebook: "https://www.facebook.com/codexiter",
linkedin: "https://www.linkedin.com/company/codex-iter",
telegram: "https://telegram.me/codex4all",
twitter: "https://twitter.com/iterCodex",
},
openGraph: {
type: "website",
locale: "en_IN",
url: shared.website,
title: shared.title,
site_name: shared.name,
description: shared.description,
images: [{
url: "http://codex-frontend.vercel.app/banner.png",
width: 1200,
height: 630,
alt: "Codex - We code, we explore",
}, ],
},
};
export default siteConfig;