Skip to content

Commit 01cd37d

Browse files
authored
Merge pull request #62 from testsigmahq/dev
Dev to main [ 25 sept ]
2 parents 4c04071 + 0075498 commit 01cd37d

8 files changed

Lines changed: 21 additions & 5 deletions

File tree

.env

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
BUCKET_NAME=BUCKET_NAME
2+
HOST_NAME=HOST_NAME
3+
ASSET_HOST=ASSET_HOST
4+
FRESHCHAT_TOKEN=FRESHCHAT_TOKEN
5+
GA_TRACKING_ID=GA_TRACKING_ID
6+
GTAG_TRACKING_ID_FOR_GA4=GTAG_TRACKING_ID_FOR_GA4
7+
GTAG_TRACKING_ID_FOR_GTAG=GTAG_TRACKING_ID_FOR_GTAG
8+
TYPESENSE_API_KEY=9N8l0PCYLaKsbXnwkQ57AwbxibuR10xK
9+
TYPESENSE_HOST=localhost
10+
TYPESENSE_PORT=8108
11+
TYPESENSE_PROTOCOL=http
12+
TYPESENSE_COLLECTION=actions-development-old
13+
TYPESENSE_SEARCH_API_KEY=J9NTGZUEemHDtei3eNn555fRDLygudgO

.github/workflows/staging-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
run: npm install --ignore-scripts=false --verbose sharp@0.30.7 --force --unsafe-perm
2222
- name: 'Create env file'
2323
run: |
24+
rm -rf .env
2425
touch .env
2526
echo BUCKET_NAME=${{ secrets.WEBSITE_STAGING_BUCKET_NAME }} >> .env
2627
echo HOST_NAME=${{ secrets.WEBSITE_STAGING_HOST_NAME }} >> .env

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ node_modules/
33
public
44
.idea/*
55
*.iml
6-
.env
76
.DS_Store
87
package-lock.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"gatsby"
99
],
1010
"scripts": {
11-
"develop": "gatsby develop -p 8001",
11+
"develop": "NODE_ENV=development gatsby develop -p 8001 -H 0.0.0.0",
1212
"start": "gatsby develop",
1313
"build": "gatsby build",
1414
"serve": "gatsby serve",

src/components/header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Header = () => {
2020
</svg>
2121
</a>
2222
<nav className="flex-auto flex items-center">
23-
<nav className="flex w-4/5">
23+
<nav className="flex w-7/12">
2424
<div className="flex items-stretch font-semibold ml-20">
2525
<a className="btn btn-ghost btn-sm pr-2 rounded-btn" href={'/docs/'}>
2626
Docs

src/components/navcards.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
border: .1rem solid $light-grey;
66
border-radius: 2px;
77
@media (max-width: 767px) {
8-
@apply w-full m-8;
8+
@apply m-8;
9+
width: 100%;
910
}
1011
&:hover{
1112
background: $black_haze;

src/components/seo.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ function SEO({ lang,
142142
<script src="https://polyfill.io/v3/polyfill.min.js?features=default%2CArray.prototype.find%2CArray.prototype.includes%2CPromise%2CObject.assign%2CObject.entries" />
143143
{/* Algolia API v4 IE11 support */}
144144
<script src="https://polyfill.io/v3/polyfill.min.js?features=Promise%2CObject.entries%2CObject.assign" />
145+
<script async defer type='text/javascript' charSet='utf-8' src='https://js.hsforms.net/forms/embed/v2.js' />
146+
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/23422177.js"></script>
145147

146148
</Helmet>
147149
);

src/templates/page.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ code[class*="language-"] {
640640
width: 60%;
641641
}
642642
@media (min-width: 1024px) {
643-
@apply w-1/5;
643+
@apply w-2/5;
644644
}
645645
@media (max-width: 1279px) {
646646
@apply p-0;

0 commit comments

Comments
 (0)