mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-16 22:46:04 +01:00
🏗 Change demos structure
This commit is contained in:
6
content/404.md
Normal file
6
content/404.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
key: '404'
|
||||
title: '404:'
|
||||
message: It looks like you're lost...
|
||||
buttonLabel: Go back home 🏠
|
||||
---
|
||||
BIN
content/favicon.png
Normal file
BIN
content/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 123 B |
14
content/links.md
Normal file
14
content/links.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
key: links
|
||||
data:
|
||||
- label: Chat with us on WhatsApp 💬
|
||||
url: https://wa.me/5545991328593
|
||||
- label: Follow us on Instagram 📸
|
||||
url: https://instagram.com/mars.collective
|
||||
- label: See our portfolio on Behance 🎨
|
||||
url: https://www.behance.net/marscollective
|
||||
- label: See what we're coding on Github 🧑💻
|
||||
url: https://github.com/marscollective
|
||||
- label: Like us on Facebook 👍
|
||||
url: https://www.facebook.com/marscollective.co
|
||||
---
|
||||
BIN
content/logo.png
Normal file
BIN
content/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
16
content/metadata.json
Normal file
16
content/metadata.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"title": "Link free",
|
||||
"shortTitle": "Link free",
|
||||
"siteUrl": "https://themes.marscollective.co/link-free",
|
||||
"description": "",
|
||||
"lang": "en",
|
||||
"logo": "logo.png",
|
||||
"favicon": "favicon.png",
|
||||
"rounded": "16",
|
||||
"colors": {
|
||||
"DEFAULT": "#FAFAFA",
|
||||
"highlight": "#00d1b7",
|
||||
"accent": "#262626",
|
||||
"background": "#262626"
|
||||
}
|
||||
}
|
||||
14
gatsby-config.js
Normal file
14
gatsby-config.js
Normal file
@@ -0,0 +1,14 @@
|
||||
const fs = require(`fs`)
|
||||
const metadataFile = `./content/metadata.json`
|
||||
const metadata = fs.existsSync(metadataFile) ? require(metadataFile) : ''
|
||||
|
||||
module.exports = {
|
||||
plugins: [
|
||||
{
|
||||
resolve: `@marscollective/gatsby-theme-link-free`,
|
||||
options: {
|
||||
metadata
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
17
package.json
Normal file
17
package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "@marscollective/gatsby-starter-link-free",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
|
||||
"dev": "gatsby develop",
|
||||
"serve": "gatsby serve",
|
||||
"clean": "gatsby clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marscollective/gatsby-theme-link-free": "^0.0.4",
|
||||
"gatsby": "^2.28.2",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user