Hossein Mehrabi
e03f910669
chore: upgrade the logos preset
2023-07-17 19:45:54 +03:30
Hossein Mehrabi
3613366d2a
chore: upgrade the logos preset
2023-07-17 19:45:54 +03:30
Hossein Mehrabi
05f517a771
chore: upgrade the logos preset
2023-07-17 19:45:54 +03:30
Hossein Mehrabi
bed47c60d7
chore: upgrade the logos preset
2023-07-17 19:45:54 +03:30
jeangovil
82c27dc10d
chore: upgrade the logos preset and update the content ( #49 )
...
* chore: upgrade the logos preset and update the content
2023-07-17 19:45:54 +03:30
LordGhostX
828017fbc1
add fathom analytics ( #48 )
2023-07-17 19:45:54 +03:30
jeangovil
e434e04501
chore: upgrade logos preste ( #47 )
2023-07-17 19:45:53 +03:30
jeangovil
6c94dcd0b2
feat: upgrade logos preste && replace hero model with a pre-rendered video ( #45 )
2023-07-17 19:45:53 +03:30
Jinho Jang
57597b3763
update footer links ( #43 )
2023-07-17 19:45:53 +03:30
Jinho Jang
21cee35576
make hero CTA outlined ( #42 )
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
93f2f1b20a
upgrade logos preset
2023-07-17 19:45:53 +03:30
jinhojang6
90d543a2ac
update terms content
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
e790e4c8a5
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
ca06d20dfc
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
d92be92d1e
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
8186ffc8fd
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
47a8f9b634
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
205b452832
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
b0b2785a0e
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
b18e12f918
upgrade logos preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
b57f458aeb
upgrade logos preset
2023-07-17 19:45:53 +03:30
amir houieh
e077b67002
config ascii for better look for waku
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
6579ed34ae
upgrade logos preset
2023-07-17 19:45:53 +03:30
Jinho Jang
efcb0bd465
update navbar github link ( #40 )
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
075992863f
update content
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
d3eddde7af
upgrade logos docusaurus preset
2023-07-17 19:45:53 +03:30
jinhojang6
b93a963684
fix typos
2023-07-17 19:45:53 +03:30
jinhojang6
5d62205f20
update landing page content
2023-07-17 19:45:53 +03:30
Jinho Jang
8aef9143a7
update content ( #38 )
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
f03a34d07d
upgrade logos docusaurus preset
2023-07-17 19:45:53 +03:30
Hossein Mehrabi
f78e1e09ea
fix: update showcase marks
2023-07-17 19:45:52 +03:30
Hossein Mehrabi
b29eea00d6
fix: typo in hero title
2023-07-17 19:45:52 +03:30
Hossein Mehrabi
b7cb8ee65d
fix: fix the order of showcase items
2023-07-17 19:45:52 +03:30
jinhojang6
186e21c2b8
fix typo and add Docs to navbar
2023-07-17 19:45:52 +03:30
jinhojang6
14b848474c
remove blog from navbar
2023-07-17 19:45:52 +03:30
Hossein Mehrabi
cbb569ac46
upgrade logos docusaurus preset
2023-07-17 19:45:52 +03:30
Hossein Mehrabi
d74347a7b4
upgrade logos docusaurus preset
2023-07-17 19:45:52 +03:30
Hossein Mehrabi
ff53ca7a56
update content & configuration
2023-07-17 19:45:52 +03:30
SWB
5c7e52c325
BREAKING CHANGE: implement docusaurus ( #36 )
...
* BREAKING CHANGE: implement docusaurus
2023-07-17 19:45:50 +03:30
fryorcraken.eth
c2b7051ed3
Link to new Discord
2023-06-06 13:07:45 +10:00
SWB
72fcd1b4d4
fix: CNAME file issue ( #29 )
...
CNAME file was located in ./static-assets, but it should be in the
`out` directory after the build stage because the `out` folder was
created in the `build` stage.
2023-03-21 17:53:09 +00:00
amirhouieh
7bcbe4edb3
remove vercel actions
2023-03-17 12:18:20 +01:00
swb
057b1512ab
add jenkinsfile and CNAME file
...
The current implementation of the site builder requires content
repo to be submited as a zip file for production using env vars
`CONTENT_SOURCE_TYPE=git` and `CONTENT_SOURCE_URL=repo-link.zip`
which is not considered a best practice. Due to this, a race
condition may occur during the build process if another commit
is made while the build is in progress which may lead a security
flow. To work around this,first, we checkout into `src` using
`checkoutToSubdirectory('src')`. Then, we use `local_folder`
mode using `CONTENT_SOURCE_TYPE=local_folder` and
`CONTENT_SOURCE_URL=..src` env vars, just like a local develop.
`local_folder` mode copies the website files from `src` into
`docs` because the site builder is incapable of copying it.
We checkout the builder into the `builder` directory and run
the `install` and `build` commands inside of that directory.
Finally, for publish stages, we copy the `out` directory into
the site repo, since the out directory is in the wrong repo.
2023-03-16 16:52:06 +01:00
fryorcraken.eth
0dbc5602df
fix footer discord link ( #27 )
2023-02-28 15:25:28 +11:00
fryorcraken.eth
8449306167
Update links ( #24 )
2023-02-14 09:40:08 +11:00
jeangovil
9d7856658b
Fix format and spelling ( #22 )
...
* Fix the spelling issues in the privacy-policy.md and terms-of-use.md.
* Update prettier.
2023-01-19 15:25:32 +01:00
jeangovil
2d8d9b8e15
Update privacy-policy.md ( #21 )
2023-01-19 14:50:11 +01:00
amir houieh
2c0311f814
Update privacy-policy.md
2023-01-19 14:32:09 +01:00
amir houieh
ee5111cb24
Update privacy-policy.md
2023-01-19 14:24:14 +01:00
amir houieh
571996ea14
Update config.json
2023-01-19 14:20:12 +01:00