Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sritanmotati committed Jan 7, 2022
1 parent d36073e commit 7f4b361
Show file tree
Hide file tree
Showing 25 changed files with 1,662 additions and 248 deletions.
1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './src/css/index.css';
20 changes: 18 additions & 2 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
module.exports = {
siteMetadata: {
siteUrl: "https://www.yourdomain.tld",
title: "Potentia Website",
title: `Potentia Robotics`,
titleTemplate: "%s | Potentia Robotics",
description: `The website of Potentia Robotics, the first team of high school students to design and build a fully-functioning humanoid robot.`,
author: `@potentiarobotics`,
siteUrl:"https://potentiarobotics.com",
keywords: "potentia robotics, potentia, robotics, high school, tjhsst",
},
plugins: [
"gatsby-plugin-gatsby-cloud",
Expand All @@ -18,5 +22,17 @@ module.exports = {
},
__key: "images",
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Potentia Robotics`,
short_name: `potentia`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#ffffff`,
display: `minimal-ui`,
icon: `./src/images/icon.png`, // This path is relative to the root of the site.
},
},
],
};
Loading

0 comments on commit 7f4b361

Please sign in to comment.