diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD
index b93b2d00..c04df190 100644
--- a/CONTRIBUTING.MD
+++ b/CONTRIBUTING.MD
@@ -1,6 +1,6 @@
# Contributing guide
-Thanks for your contribution 🥳 to the Fastily website redesign project!
+Thanks for your contribution 🥳 to the Fastify website redesign project!
[Code of Conduct](https://github.com/fastify/.github/blob/main/CODE_OF_CONDUCT.md)
diff --git a/README.md b/README.md
index 7caef1a2..77633439 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ This command starts a local development server and opens up a browser window.
Most changes are reflected live without having to restart the server.
Note that only the documentations listed in the `versions.json` file will be available.
-So, if you have a long version list, your local enviroment will be slowed down.
+So, if you have a long version list, your local environment will be slowed down.
### Build
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 4005b47c..30c93ca6 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -118,7 +118,7 @@ const config = {
},
{ to: '/ecosystem', label: 'Ecosystem', position: 'left' },
{ to: '/benchmarks', label: 'Benchmarks', position: 'left' },
- { to: '/organisations', label: 'Adopters', position: 'left' },
+ { to: '/organizations', label: 'Adopters', position: 'left' },
{ to: '/contribute', label: 'Contribute', position: 'left' },
{ to: '/resources', label: 'Resources', position: 'left' },
{
@@ -205,6 +205,12 @@ const config = {
// This plugin does not work in dev mode
'@docusaurus/plugin-client-redirects',
{
+ redirects: [
+ {
+ from: '/organisations',
+ to: '/organizations',
+ },
+ ],
createRedirects(existingPath) {
// Legacy/Retro compatibility:
diff --git a/docusaurus.config.utils.js b/docusaurus.config.utils.js
index a226792b..cb9650db 100644
--- a/docusaurus.config.utils.js
+++ b/docusaurus.config.utils.js
@@ -17,7 +17,7 @@ function checkGeneratedData() {
const generatedFiles = [
'static/generated/acknowledgements.json',
'static/generated/benchmarks.json',
- 'static/generated/organisations.json',
+ 'static/generated/organizations.json',
'static/generated/plugins.json',
'static/generated/team.json',
]
@@ -90,7 +90,7 @@ function manageRedirects({ existingPath, major, versions, versionsShipped, ignor
return existingPath
.replace(`/docs/${versionName}`, oldPath) // Replace the version with the old path
.replace(/Guides\/(?!Contributing)/g, '') // Remove Guides/ from the path (it has been added in v4)
- .replace(/Reference\//g, '') // Remove Refecerence/ from the path (it has been added in v4)
+ .replace(/Reference\//g, '') // Remove Reference/ from the path (it has been added in v4)
})
// Remove duplicates
diff --git a/scripts/build-static-data.js b/scripts/build-static-data.js
index 7309870f..2dc54178 100644
--- a/scripts/build-static-data.js
+++ b/scripts/build-static-data.js
@@ -31,8 +31,8 @@ execute([
// ##### Organizations
{
- staticDataFile: path.join(__dirname, '../static/data/organisations.yml'),
- outputFile: path.join(__dirname, '../static/generated/organisations.json'),
+ staticDataFile: path.join(__dirname, '../static/data/organizations.yml'),
+ outputFile: path.join(__dirname, '../static/generated/organizations.json'),
sideEffect: (data) => {
// Sort alphabetically by `name` lowercase
data.sort((a, b) => {
diff --git a/src/components/Organisations/index.jsx b/src/components/Organizations/index.jsx
similarity index 76%
rename from src/components/Organisations/index.jsx
rename to src/components/Organizations/index.jsx
index 8f3a518c..063d9732 100644
--- a/src/components/Organisations/index.jsx
+++ b/src/components/Organizations/index.jsx
@@ -1,12 +1,12 @@
import React from 'react'
import useBaseUrl from '@docusaurus/useBaseUrl'
-import organizationsData from '@site/static/generated/organisations.json'
+import organizationsData from '@site/static/generated/organizations.json'
import styles from './styles.module.css'
-export default function Organisations({ maxItems }) {
+export default function Organizations({ maxItems }) {
return (
-
@@ -19,7 +19,7 @@ export default function Organisations({ maxItems }) {
function OrganizationItem({ organization }) {
return (
-
+
)
}
diff --git a/src/components/Organisations/styles.module.css b/src/components/Organizations/styles.module.css
similarity index 73%
rename from src/components/Organisations/styles.module.css
rename to src/components/Organizations/styles.module.css
index a8582240..e1d77b1f 100644
--- a/src/components/Organisations/styles.module.css
+++ b/src/components/Organizations/styles.module.css
@@ -1,4 +1,4 @@
-.organisationsList {
+.organizationsList {
margin: 0;
padding: 0;
display: flex;
@@ -9,29 +9,29 @@
justify-items: center;
}
-[data-theme='dark'] .organisationsList {
+[data-theme='dark'] .organizationsList {
background-color: var(--ifm-color-secondary-dark);
border-radius: var(--ifm-code-border-radius);
}
-.organisationsList li {
+.organizationsList li {
align-items: center;
display: flex;
justify-content: center;
margin: 0.6rem;
}
-.organisationsList li a {
+.organizationsList li a {
text-decoration: none;
}
-.organisationsList li a img {
+.organizationsList li a img {
max-height: 60px;
max-width: 160px;
filter: grayscale(100%);
transition: all 0.5s;
}
-.organisationsList li a:hover img {
+.organizationsList li a:hover img {
filter: none;
}
diff --git a/src/pages/index.jsx b/src/pages/index.jsx
index 0fce7c52..42748cf1 100644
--- a/src/pages/index.jsx
+++ b/src/pages/index.jsx
@@ -5,7 +5,7 @@ import Layout from '@theme/Layout'
import Link from '@docusaurus/Link'
import HomepageHeader from '@site/src/components/HomePageHeader/index.jsx'
-import Organisations from '@site/src/components/Organisations'
+import Organizations from '@site/src/components/Organizations'
import Team from '@site/src/components/Team'
import QuickStart from '@site/src/components/QuickStart'
@@ -39,12 +39,12 @@ export default function Home() {
Who is using Fastify?
-
Fastify is proudly powering a large ecosystem of organisations and products out there.
+
Fastify is proudly powering a large ecosystem of organizations and products out there.
- Discover more organisations using Fastify. Do you want your organisation
- to be featured here?
+ Discover more organizations using Fastify. Do you want your organization
+ to be featured here?
-
+
@@ -108,11 +108,10 @@ export default function Home() {
Ecosystem
- Fastify has an ever-growing ecosystem of plugins. Probably there is already a plugin for your
- favourite database or template language. Have a look at the{' '}
- Ecosystem page to navigate through the currently available plugins.
- Can't you find the plugin you are looking for? No problem,{' '}
- it's very easy to write one!
+ Fastify has an ever-growing ecosystem of plugins. Probably there is already a plugin for your favorite
+ database or template language. Have a look at the Ecosystem page to
+ navigate through the currently available plugins. Can't you find the plugin you are looking for?
+ No problem, it's very easy to write one!
diff --git a/src/pages/organisations.mdx b/src/pages/organizations.mdx
similarity index 54%
rename from src/pages/organisations.mdx
rename to src/pages/organizations.mdx
index dfad9758..d57a4719 100644
--- a/src/pages/organisations.mdx
+++ b/src/pages/organizations.mdx
@@ -1,24 +1,24 @@
import HeroBanner from '@site/src/components/HeroBanner'
-import Organisations from '@site/src/components/Organisations'
+import Organizations from '@site/src/components/Organizations'
-
+
-Fastify is proudly powering a large ecosystem of organisations and products out there.
+Fastify is proudly powering a large ecosystem of organizations and products out there.
-Below is a list of some of the organisations adopting Fastify.
+Below is a list of some of the organizations adopting Fastify.
-
+
-_The logos displayed in this page are property of the respective organisations and they are not distributed under the same license as Fastify (MIT)._
+_The logos displayed in this page are property of the respective organizations and they are not distributed under the same license as Fastify (MIT)._
## How to be featured here
-Is your organisation using Fastify? That's great!
+Is your organization using Fastify? That's great!
-If you would like your organisation to have its logo featured in this list, here's how you do it! You can submit your organisation, your logo and other few relevant details by following these steps:
+If you would like your organization to have its logo featured in this list, here's how you do it! You can submit your organization, your logo and other few relevant details by following these steps:
1. Fork the [Fastify website repository](https://github.com/fastify/website) on GitHub
-2. Add the logo in the `static/img/organisations` folder
+2. Add the logo in the `static/img/organizations` folder
Please make sure that your logo complies to the following specs:
@@ -26,13 +26,13 @@ Please make sure that your logo complies to the following specs:
- Be reasonably optimized/minified _(you can use [imageOptim](https://imageoptim.com/))_
- Make sure image "width" or "height" are explicitly specified in the "svg" tag
-3. Update the `static/data/organisations.yml` file with a new entry
+3. Update the `static/data/organizations.yml` file with a new entry
Your entry must provide:
-- `name`: the name of your organisation
+- `name`: the name of your organization
- `image`: the filename of the logo you added in the previous step
-- `link`: a link to a website that represents your organisation
+- `link`: a link to a website that represents your organization
4. Submit the PR!
diff --git a/static/data/organisations.yml b/static/data/organizations.yml
similarity index 100%
rename from static/data/organisations.yml
rename to static/data/organizations.yml
diff --git a/static/img/organisations/2hire.svg b/static/img/organizations/2hire.svg
similarity index 100%
rename from static/img/organisations/2hire.svg
rename to static/img/organizations/2hire.svg
diff --git a/static/img/organisations/CarbonGraph-text-logo-_1_-_2_.svg b/static/img/organizations/CarbonGraph-text-logo-_1_-_2_.svg
similarity index 100%
rename from static/img/organisations/CarbonGraph-text-logo-_1_-_2_.svg
rename to static/img/organizations/CarbonGraph-text-logo-_1_-_2_.svg
diff --git a/static/img/organisations/LICENSE b/static/img/organizations/LICENSE
similarity index 100%
rename from static/img/organisations/LICENSE
rename to static/img/organizations/LICENSE
diff --git a/static/img/organisations/aasaam.svg b/static/img/organizations/aasaam.svg
similarity index 100%
rename from static/img/organisations/aasaam.svg
rename to static/img/organizations/aasaam.svg
diff --git a/static/img/organisations/amerisave.svg b/static/img/organizations/amerisave.svg
similarity index 100%
rename from static/img/organisations/amerisave.svg
rename to static/img/organizations/amerisave.svg
diff --git a/static/img/organisations/appadaptive.svg b/static/img/organizations/appadaptive.svg
similarity index 100%
rename from static/img/organisations/appadaptive.svg
rename to static/img/organizations/appadaptive.svg
diff --git a/static/img/organisations/beliven.svg b/static/img/organizations/beliven.svg
similarity index 100%
rename from static/img/organisations/beliven.svg
rename to static/img/organizations/beliven.svg
diff --git a/static/img/organisations/bestgameprice.svg b/static/img/organizations/bestgameprice.svg
similarity index 100%
rename from static/img/organisations/bestgameprice.svg
rename to static/img/organizations/bestgameprice.svg
diff --git a/static/img/organisations/car2go.svg b/static/img/organizations/car2go.svg
similarity index 100%
rename from static/img/organisations/car2go.svg
rename to static/img/organizations/car2go.svg
diff --git a/static/img/organisations/care.svg b/static/img/organizations/care.svg
similarity index 100%
rename from static/img/organisations/care.svg
rename to static/img/organizations/care.svg
diff --git a/static/img/organisations/chatlayer_by_sinch.svg b/static/img/organizations/chatlayer_by_sinch.svg
similarity index 100%
rename from static/img/organisations/chatlayer_by_sinch.svg
rename to static/img/organizations/chatlayer_by_sinch.svg
diff --git a/static/img/organisations/clearglass.svg b/static/img/organizations/clearglass.svg
similarity index 100%
rename from static/img/organisations/clearglass.svg
rename to static/img/organizations/clearglass.svg
diff --git a/static/img/organisations/codecks.svg b/static/img/organizations/codecks.svg
similarity index 100%
rename from static/img/organisations/codecks.svg
rename to static/img/organizations/codecks.svg
diff --git a/static/img/organisations/codequest.svg b/static/img/organizations/codequest.svg
similarity index 100%
rename from static/img/organisations/codequest.svg
rename to static/img/organizations/codequest.svg
diff --git a/static/img/organisations/commonshost.svg b/static/img/organizations/commonshost.svg
similarity index 100%
rename from static/img/organisations/commonshost.svg
rename to static/img/organizations/commonshost.svg
diff --git a/static/img/organisations/compressor.svg b/static/img/organizations/compressor.svg
similarity index 100%
rename from static/img/organisations/compressor.svg
rename to static/img/organizations/compressor.svg
diff --git a/static/img/organisations/corsairm360.svg b/static/img/organizations/corsairm360.svg
similarity index 100%
rename from static/img/organisations/corsairm360.svg
rename to static/img/organizations/corsairm360.svg
diff --git a/static/img/organisations/dig-a-hash.png b/static/img/organizations/dig-a-hash.png
similarity index 100%
rename from static/img/organisations/dig-a-hash.png
rename to static/img/organizations/dig-a-hash.png
diff --git a/static/img/organisations/discordbotscatalog.svg b/static/img/organizations/discordbotscatalog.svg
similarity index 100%
rename from static/img/organisations/discordbotscatalog.svg
rename to static/img/organizations/discordbotscatalog.svg
diff --git a/static/img/organisations/elo7.svg b/static/img/organizations/elo7.svg
similarity index 100%
rename from static/img/organisations/elo7.svg
rename to static/img/organizations/elo7.svg
diff --git a/static/img/organisations/evilfactorylabs.svg b/static/img/organizations/evilfactorylabs.svg
similarity index 100%
rename from static/img/organisations/evilfactorylabs.svg
rename to static/img/organizations/evilfactorylabs.svg
diff --git a/static/img/organisations/fabfitfun.svg b/static/img/organizations/fabfitfun.svg
similarity index 100%
rename from static/img/organisations/fabfitfun.svg
rename to static/img/organizations/fabfitfun.svg
diff --git a/static/img/organisations/findadiscord.svg b/static/img/organizations/findadiscord.svg
similarity index 100%
rename from static/img/organisations/findadiscord.svg
rename to static/img/organizations/findadiscord.svg
diff --git a/static/img/organisations/flashapp.svg b/static/img/organizations/flashapp.svg
similarity index 100%
rename from static/img/organisations/flashapp.svg
rename to static/img/organizations/flashapp.svg
diff --git a/static/img/organisations/fluxqr.svg b/static/img/organizations/fluxqr.svg
similarity index 100%
rename from static/img/organisations/fluxqr.svg
rename to static/img/organizations/fluxqr.svg
diff --git a/static/img/organisations/future-foundry.svg b/static/img/organizations/future-foundry.svg
similarity index 100%
rename from static/img/organisations/future-foundry.svg
rename to static/img/organizations/future-foundry.svg
diff --git a/static/img/organisations/genesys.svg b/static/img/organizations/genesys.svg
similarity index 100%
rename from static/img/organisations/genesys.svg
rename to static/img/organizations/genesys.svg
diff --git a/static/img/organisations/geolytix.svg b/static/img/organizations/geolytix.svg
similarity index 100%
rename from static/img/organisations/geolytix.svg
rename to static/img/organizations/geolytix.svg
diff --git a/static/img/organisations/global-cto-forum.svg b/static/img/organizations/global-cto-forum.svg
similarity index 100%
rename from static/img/organisations/global-cto-forum.svg
rename to static/img/organizations/global-cto-forum.svg
diff --git a/static/img/organisations/gumlet.svg b/static/img/organizations/gumlet.svg
similarity index 100%
rename from static/img/organisations/gumlet.svg
rename to static/img/organizations/gumlet.svg
diff --git a/static/img/organisations/habit.svg b/static/img/organizations/habit.svg
similarity index 100%
rename from static/img/organisations/habit.svg
rename to static/img/organizations/habit.svg
diff --git a/static/img/organisations/harperdb.svg b/static/img/organizations/harperdb.svg
similarity index 100%
rename from static/img/organisations/harperdb.svg
rename to static/img/organizations/harperdb.svg
diff --git a/static/img/organisations/heyhey.svg b/static/img/organizations/heyhey.svg
similarity index 100%
rename from static/img/organisations/heyhey.svg
rename to static/img/organizations/heyhey.svg
diff --git a/static/img/organisations/hospitalrun.svg b/static/img/organizations/hospitalrun.svg
similarity index 100%
rename from static/img/organisations/hospitalrun.svg
rename to static/img/organizations/hospitalrun.svg
diff --git a/static/img/organisations/hotstar.svg b/static/img/organizations/hotstar.svg
similarity index 100%
rename from static/img/organisations/hotstar.svg
rename to static/img/organizations/hotstar.svg
diff --git a/static/img/organisations/immobiliarelabs.svg b/static/img/organizations/immobiliarelabs.svg
similarity index 100%
rename from static/img/organisations/immobiliarelabs.svg
rename to static/img/organizations/immobiliarelabs.svg
diff --git a/static/img/organisations/investorean.svg b/static/img/organizations/investorean.svg
similarity index 100%
rename from static/img/organisations/investorean.svg
rename to static/img/organizations/investorean.svg
diff --git a/static/img/organisations/jobpair.svg b/static/img/organizations/jobpair.svg
similarity index 100%
rename from static/img/organisations/jobpair.svg
rename to static/img/organizations/jobpair.svg
diff --git a/static/img/organisations/jobsinjs.svg b/static/img/organizations/jobsinjs.svg
similarity index 100%
rename from static/img/organisations/jobsinjs.svg
rename to static/img/organizations/jobsinjs.svg
diff --git a/static/img/organisations/jochen-schweizer.svg b/static/img/organizations/jochen-schweizer.svg
similarity index 100%
rename from static/img/organisations/jochen-schweizer.svg
rename to static/img/organizations/jochen-schweizer.svg
diff --git a/static/img/organisations/joggr.svg b/static/img/organizations/joggr.svg
similarity index 100%
rename from static/img/organisations/joggr.svg
rename to static/img/organizations/joggr.svg
diff --git a/static/img/organisations/kutumb.svg b/static/img/organizations/kutumb.svg
similarity index 100%
rename from static/img/organisations/kutumb.svg
rename to static/img/organizations/kutumb.svg
diff --git a/static/img/organisations/localistars.svg b/static/img/organizations/localistars.svg
similarity index 100%
rename from static/img/organisations/localistars.svg
rename to static/img/organizations/localistars.svg
diff --git a/static/img/organisations/locize.svg b/static/img/organizations/locize.svg
similarity index 100%
rename from static/img/organisations/locize.svg
rename to static/img/organizations/locize.svg
diff --git a/static/img/organisations/logdna.svg b/static/img/organizations/logdna.svg
similarity index 100%
rename from static/img/organisations/logdna.svg
rename to static/img/organizations/logdna.svg
diff --git a/static/img/organisations/marsx.svg b/static/img/organizations/marsx.svg
similarity index 100%
rename from static/img/organisations/marsx.svg
rename to static/img/organizations/marsx.svg
diff --git a/static/img/organisations/meshcollider.svg b/static/img/organizations/meshcollider.svg
similarity index 100%
rename from static/img/organisations/meshcollider.svg
rename to static/img/organizations/meshcollider.svg
diff --git a/static/img/organisations/mia-platform.svg b/static/img/organizations/mia-platform.svg
similarity index 100%
rename from static/img/organisations/mia-platform.svg
rename to static/img/organizations/mia-platform.svg
diff --git a/static/img/organisations/microsoft.svg b/static/img/organizations/microsoft.svg
similarity index 100%
rename from static/img/organisations/microsoft.svg
rename to static/img/organizations/microsoft.svg
diff --git a/static/img/organisations/monitr.svg b/static/img/organizations/monitr.svg
similarity index 100%
rename from static/img/organisations/monitr.svg
rename to static/img/organizations/monitr.svg
diff --git a/static/img/organisations/mrp.svg b/static/img/organizations/mrp.svg
similarity index 100%
rename from static/img/organisations/mrp.svg
rename to static/img/organizations/mrp.svg
diff --git a/static/img/organisations/mvlabs.svg b/static/img/organizations/mvlabs.svg
similarity index 100%
rename from static/img/organisations/mvlabs.svg
rename to static/img/organizations/mvlabs.svg
diff --git a/static/img/organisations/nearform.svg b/static/img/organizations/nearform.svg
similarity index 100%
rename from static/img/organisations/nearform.svg
rename to static/img/organizations/nearform.svg
diff --git a/static/img/organisations/nerdwallet.svg b/static/img/organizations/nerdwallet.svg
similarity index 100%
rename from static/img/organisations/nerdwallet.svg
rename to static/img/organizations/nerdwallet.svg
diff --git a/static/img/organisations/net-a-porter.svg b/static/img/organizations/net-a-porter.svg
similarity index 100%
rename from static/img/organisations/net-a-porter.svg
rename to static/img/organizations/net-a-porter.svg
diff --git a/static/img/organisations/nttcom-skyway.svg b/static/img/organizations/nttcom-skyway.svg
similarity index 100%
rename from static/img/organisations/nttcom-skyway.svg
rename to static/img/organizations/nttcom-skyway.svg
diff --git a/static/img/organisations/nucleode.svg b/static/img/organizations/nucleode.svg
similarity index 100%
rename from static/img/organisations/nucleode.svg
rename to static/img/organizations/nucleode.svg
diff --git a/static/img/organisations/nullplatform.svg b/static/img/organizations/nullplatform.svg
similarity index 100%
rename from static/img/organisations/nullplatform.svg
rename to static/img/organizations/nullplatform.svg
diff --git a/static/img/organisations/oneclick.svg b/static/img/organizations/oneclick.svg
similarity index 100%
rename from static/img/organisations/oneclick.svg
rename to static/img/organizations/oneclick.svg
diff --git a/static/img/organisations/papion.svg b/static/img/organizations/papion.svg
similarity index 100%
rename from static/img/organisations/papion.svg
rename to static/img/organizations/papion.svg
diff --git a/static/img/organisations/picperf.svg b/static/img/organizations/picperf.svg
similarity index 100%
rename from static/img/organisations/picperf.svg
rename to static/img/organizations/picperf.svg
diff --git a/static/img/organisations/platformatic.svg b/static/img/organizations/platformatic.svg
similarity index 100%
rename from static/img/organisations/platformatic.svg
rename to static/img/organizations/platformatic.svg
diff --git a/static/img/organisations/quero-educacao.svg b/static/img/organizations/quero-educacao.svg
similarity index 100%
rename from static/img/organisations/quero-educacao.svg
rename to static/img/organizations/quero-educacao.svg
diff --git a/static/img/organisations/radity.svg b/static/img/organizations/radity.svg
similarity index 100%
rename from static/img/organisations/radity.svg
rename to static/img/organizations/radity.svg
diff --git a/static/img/organisations/remotescout.svg b/static/img/organizations/remotescout.svg
similarity index 100%
rename from static/img/organisations/remotescout.svg
rename to static/img/organizations/remotescout.svg
diff --git a/static/img/organisations/retraced.svg b/static/img/organizations/retraced.svg
similarity index 100%
rename from static/img/organisations/retraced.svg
rename to static/img/organizations/retraced.svg
diff --git a/static/img/organisations/runeaudio.svg b/static/img/organizations/runeaudio.svg
similarity index 100%
rename from static/img/organisations/runeaudio.svg
rename to static/img/organizations/runeaudio.svg
diff --git a/static/img/organisations/satiurn.svg b/static/img/organizations/satiurn.svg
similarity index 100%
rename from static/img/organisations/satiurn.svg
rename to static/img/organizations/satiurn.svg
diff --git a/static/img/organisations/seedium.svg b/static/img/organizations/seedium.svg
similarity index 100%
rename from static/img/organisations/seedium.svg
rename to static/img/organizations/seedium.svg
diff --git a/static/img/organisations/seznam.cz.svg b/static/img/organizations/seznam.cz.svg
similarity index 100%
rename from static/img/organisations/seznam.cz.svg
rename to static/img/organizations/seznam.cz.svg
diff --git a/static/img/organisations/skeelo.svg b/static/img/organizations/skeelo.svg
similarity index 100%
rename from static/img/organisations/skeelo.svg
rename to static/img/organizations/skeelo.svg
diff --git a/static/img/organisations/spendesk.svg b/static/img/organizations/spendesk.svg
similarity index 100%
rename from static/img/organisations/spendesk.svg
rename to static/img/organizations/spendesk.svg
diff --git a/static/img/organisations/stillio.svg b/static/img/organizations/stillio.svg
similarity index 100%
rename from static/img/organisations/stillio.svg
rename to static/img/organizations/stillio.svg
diff --git a/static/img/organisations/swissdev-javascript-jobs-200-200.svg b/static/img/organizations/swissdev-javascript-jobs-200-200.svg
similarity index 100%
rename from static/img/organisations/swissdev-javascript-jobs-200-200.svg
rename to static/img/organizations/swissdev-javascript-jobs-200-200.svg
diff --git a/static/img/organisations/theoutnet.svg b/static/img/organizations/theoutnet.svg
similarity index 100%
rename from static/img/organisations/theoutnet.svg
rename to static/img/organizations/theoutnet.svg
diff --git a/static/img/organisations/trizyapp.svg b/static/img/organizations/trizyapp.svg
similarity index 100%
rename from static/img/organisations/trizyapp.svg
rename to static/img/organizations/trizyapp.svg
diff --git a/static/img/organisations/turmitech.svg b/static/img/organizations/turmitech.svg
similarity index 100%
rename from static/img/organisations/turmitech.svg
rename to static/img/organizations/turmitech.svg
diff --git a/static/img/organisations/unhandled.svg b/static/img/organizations/unhandled.svg
similarity index 100%
rename from static/img/organisations/unhandled.svg
rename to static/img/organizations/unhandled.svg
diff --git a/static/img/organisations/uniq.svg b/static/img/organizations/uniq.svg
similarity index 100%
rename from static/img/organisations/uniq.svg
rename to static/img/organizations/uniq.svg
diff --git a/static/img/organisations/urbanpiper.svg b/static/img/organizations/urbanpiper.svg
similarity index 100%
rename from static/img/organisations/urbanpiper.svg
rename to static/img/organizations/urbanpiper.svg
diff --git a/static/img/organisations/uscreen.svg b/static/img/organizations/uscreen.svg
similarity index 100%
rename from static/img/organisations/uscreen.svg
rename to static/img/organizations/uscreen.svg
diff --git a/static/img/organisations/vectra.svg b/static/img/organizations/vectra.svg
similarity index 100%
rename from static/img/organisations/vectra.svg
rename to static/img/organizations/vectra.svg
diff --git a/static/img/organisations/webiny.svg b/static/img/organizations/webiny.svg
similarity index 100%
rename from static/img/organisations/webiny.svg
rename to static/img/organizations/webiny.svg
diff --git a/static/img/organisations/zero-one-group.svg b/static/img/organizations/zero-one-group.svg
similarity index 100%
rename from static/img/organisations/zero-one-group.svg
rename to static/img/organizations/zero-one-group.svg