-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
46 lines (46 loc) · 1.09 KB
/
gatsby-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
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.GOOGLE_ANALYTICS_TRACKING_ID || "none",
}
},
{
resolve: `gatsby-theme-blog`,
options: {},
},
],
// Customize your site metadata:
siteMetadata: {
title: `BAU Yazılım ve Bilişim Kulübü`,
author: `BUYABI`,
description: `Bahçeşehir Üniversitesi Yazılım ve Bilişim Kulübünün etkinliklerini paylaştığı blog sayfasıdır.`,
social: [
{
name: `github`,
url: `https://github.com/bau-global`,
},
{
name: `twitter`,
url: `https://twitter.com/buyabi`,
},
{
name: `instagram`,
url: `https://www.instagram.com/bauyazilim`,
},
{
name: `facebook page`,
url: `https://facebook.com/pg/buyabi/about`,
},
{
name: `facebook group`,
url: `https://www.facebook.com/groups/buyabi`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/groups/4214425`,
},
],
},
}