Skip to content

Commit a277280

Browse files
committed
Update Site
1 parent 74741b8 commit a277280

15 files changed

+194
-143
lines changed

README.md

Lines changed: 2 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,3 @@
1-
<p align="center">
2-
<a href="https://www.gatsbyjs.com/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts">
3-
<img alt="Gatsby" src="https://www.gatsbyjs.com/Gatsby-Monogram.svg" width="60" />
4-
</a>
5-
</p>
6-
<h1 align="center">
7-
Gatsby Minimal TypeScript Starter
8-
</h1>
1+
# 1D6 Site
92

10-
## 🚀 Quick start
11-
12-
1. **Create a Gatsby site.**
13-
14-
Use the Gatsby CLI to create a new site, specifying the minimal TypeScript starter.
15-
16-
```shell
17-
# create a new Gatsby site using the minimal TypeScript starter
18-
npm init gatsby -- -ts
19-
```
20-
21-
2. **Start developing.**
22-
23-
Navigate into your new site’s directory and start it up.
24-
25-
```shell
26-
cd my-gatsby-site/
27-
npm run develop
28-
```
29-
30-
3. **Open the code and start customizing!**
31-
32-
Your site is now running at http://localhost:8000!
33-
34-
Edit `src/pages/index.tsx` to see your site update in real-time!
35-
36-
4. **Learn more**
37-
38-
- [Documentation](https://www.gatsbyjs.com/docs/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
39-
- [Tutorials](https://www.gatsbyjs.com/docs/tutorial/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
40-
- [Guides](https://www.gatsbyjs.com/docs/how-to/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
41-
- [API Reference](https://www.gatsbyjs.com/docs/api-reference/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
42-
- [Plugin Library](https://www.gatsbyjs.com/plugins?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
43-
- [Cheat Sheet](https://www.gatsbyjs.com/docs/cheat-sheet/?utm_source=starter&utm_medium=readme&utm_campaign=minimal-starter-ts)
44-
45-
## 🚀 Quick start (Netlify)
46-
47-
Deploy this starter with one click on [Netlify](https://app.netlify.com/signup):
48-
49-
[<img src="https://www.netlify.com/img/deploy/button.svg" alt="Deploy to Netlify" />](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-minimal-ts)
3+
TODO! (again)

gatsby-config.ts

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
import type { GatsbyConfig } from "gatsby";
22

33
const config: GatsbyConfig = {
4-
siteMetadata: {
5-
title: `My Gatsby Site`,
6-
siteUrl: `https://www.yourdomain.tld`
7-
},
8-
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
9-
// If you use VSCode you can also use the GraphQL plugin
10-
// Learn more at: https://gatsby.dev/graphql-typegen
11-
graphqlTypegen: true,
12-
plugins: [`gatsby-plugin-sass`],
4+
siteMetadata: {
5+
title: `1D6 | Our Site`,
6+
siteUrl: `https://www.onedsix.github.io`
7+
},
8+
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
9+
// If you use VSCode you can also use the GraphQL plugin
10+
// Learn more at: https://gatsby.dev/graphql-typegen
11+
graphqlTypegen: true,
12+
plugins: [
13+
`gatsby-plugin-sass`,
14+
{
15+
resolve: `gatsby-plugin-manifest`,
16+
options: {
17+
name: `GatsbyJS`,
18+
short_name: `GatsbyJS`,
19+
start_url: `/`,
20+
background_color: `#f7f0eb`,
21+
theme_color: `#a2466c`,
22+
display: `standalone`,
23+
icon: `src/assets/icon.png`
24+
},
25+
},
26+
],
1327
};
1428

1529
export default config;

package-lock.json

Lines changed: 33 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"axios": "^1.7.2",
1616
"dompurify": "^3.1.5",
1717
"gatsby": "^5.13.5",
18+
"gatsby-plugin-manifest": "^5.13.1",
1819
"gatsby-plugin-mdx": "^5.13.1",
1920
"gatsby-plugin-sass": "^6.13.1",
2021
"gatsby-source-filesystem": "^5.13.1",

public/index.html

Lines changed: 0 additions & 7 deletions
This file was deleted.
File renamed without changes.

src/assets/icon.png

175 Bytes
Loading

0 commit comments

Comments
 (0)