Skip to content

Commit d40ba52

Browse files
committed
Progress on /sis and /students. Landing page finished
1 parent 635f524 commit d40ba52

24 files changed

+3699
-50
lines changed

gatsby-browser.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
import "./src/styles/global.css"
1+
import "./src/styles/global.css";
22

3+
import { library } from '@fortawesome/fontawesome-svg-core';
4+
import { fab } from '@fortawesome/free-brands-svg-icons';
5+
import { far } from '@fortawesome/free-regular-svg-icons';
6+
import { fas } from '@fortawesome/free-solid-svg-icons';
7+
8+
library.add(fab, far, fas);

gatsby-config.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,11 @@ module.exports = {
33
siteUrl: "https://www.yourdomain.tld",
44
title: "swiftinsg.org",
55
},
6-
plugins: ["gatsby-plugin-sass", "gatsby-plugin-sitemap"],
6+
plugins: [
7+
"gatsby-plugin-sass",
8+
"gatsby-plugin-sitemap",
9+
"gatsby-plugin-image",
10+
"gatsby-plugin-sharp",
11+
"gatsby-transformer-sharp"
12+
],
713
};

0 commit comments

Comments
 (0)