Skip to content

Commit b8f62ee

Browse files
authored
feat: Convert to gatsby/tailwind site (#1)
* chore: Removed old site * feat: Initial gatsby/tailwind setup * feat: Copy 'hero' template * feat: Adding initial build pipeline * fix: Initial build pipeline * feat: Very very simple hero page
1 parent 389e054 commit b8f62ee

File tree

206 files changed

+32923
-11688
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+32923
-11688
lines changed

.github/workflows/deploy.yaml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Build and deploy website
2+
name: Deploy website
3+
4+
on:
5+
push:
6+
branches: ["main"]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v4
25+
26+
- name: Setup Node.js
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: "18"
30+
cache: "npm"
31+
32+
- name: Install dependencies
33+
run: npm ci
34+
35+
- name: Build website
36+
run: npx gatsby build
37+
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v3
40+
with:
41+
path: ./public
42+
43+
deploy:
44+
runs-on: ubuntu-latest
45+
needs: build
46+
47+
environment:
48+
name: github-pages
49+
url: ${{ steps.deployment.outputs.page_url }}
50+
51+
steps:
52+
- name: Deploy to GitHub Pages
53+
id: deployment
54+
uses: actions/deploy-pages@v4

.github/workflows/hugo.yml

-74
This file was deleted.

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
public
1+
node_modules/
2+
.cache/
3+
public
4+
src/gatsby-types.d.ts
5+
.DS_Store

.gitmodules

-3
This file was deleted.

.hugo_build.lock

Whitespace-only changes.

README.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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>
9+
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)

archetypes/default.md

-5
This file was deleted.

content/about/_index.md

-6
This file was deleted.

content/blog/_index.md

-6
This file was deleted.

content/blog/a-new-year-a-new-posibility.md

-23
This file was deleted.

content/blog/building-an-online-audience.md

-22
This file was deleted.

content/blog/installation.md

-82
This file was deleted.

content/blog/space-shouldnt-be-the-final-frontier.md

-22
This file was deleted.

content/contact/_index.md

-6
This file was deleted.

content/gallery/_index.md

-6
This file was deleted.

0 commit comments

Comments
 (0)