diff --git a/web/bindings/ts/.gitignore b/bindings/ts/.gitignore similarity index 100% rename from web/bindings/ts/.gitignore rename to bindings/ts/.gitignore diff --git a/web/bindings/ts/README.md b/bindings/ts/README.md similarity index 100% rename from web/bindings/ts/README.md rename to bindings/ts/README.md diff --git a/web/bindings/ts/package-lock.json b/bindings/ts/package-lock.json similarity index 100% rename from web/bindings/ts/package-lock.json rename to bindings/ts/package-lock.json diff --git a/web/bindings/ts/package.json b/bindings/ts/package.json similarity index 100% rename from web/bindings/ts/package.json rename to bindings/ts/package.json diff --git a/web/bindings/ts/src/index.ts b/bindings/ts/src/index.ts similarity index 100% rename from web/bindings/ts/src/index.ts rename to bindings/ts/src/index.ts diff --git a/web/bindings/ts/tsconfig.json b/bindings/ts/tsconfig.json similarity index 100% rename from web/bindings/ts/tsconfig.json rename to bindings/ts/tsconfig.json diff --git a/web/website/.gitignore b/website/.gitignore similarity index 100% rename from web/website/.gitignore rename to website/.gitignore diff --git a/web/website/README.md b/website/README.md similarity index 100% rename from web/website/README.md rename to website/README.md diff --git a/web/website/babel.config.js b/website/babel.config.js similarity index 100% rename from web/website/babel.config.js rename to website/babel.config.js diff --git a/web/website/blog/2024-08-03-welcome/index.md b/website/blog/2024-08-03-welcome/index.md similarity index 100% rename from web/website/blog/2024-08-03-welcome/index.md rename to website/blog/2024-08-03-welcome/index.md diff --git a/web/website/blog/authors.yml b/website/blog/authors.yml similarity index 100% rename from web/website/blog/authors.yml rename to website/blog/authors.yml diff --git a/web/website/blog/tags.yml b/website/blog/tags.yml similarity index 100% rename from web/website/blog/tags.yml rename to website/blog/tags.yml diff --git a/web/website/docs/developers/_category_.json b/website/docs/developers/_category_.json similarity index 100% rename from web/website/docs/developers/_category_.json rename to website/docs/developers/_category_.json diff --git a/web/website/docs/developers/congratulations.md b/website/docs/developers/congratulations.md similarity index 100% rename from web/website/docs/developers/congratulations.md rename to website/docs/developers/congratulations.md diff --git a/web/website/docs/intro.md b/website/docs/intro.md similarity index 100% rename from web/website/docs/intro.md rename to website/docs/intro.md diff --git a/web/website/docusaurus.config.ts b/website/docusaurus.config.ts similarity index 99% rename from web/website/docusaurus.config.ts rename to website/docusaurus.config.ts index 98fee6e..477da28 100644 --- a/web/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -11,7 +11,7 @@ const config: Config = { url: 'https://tansu.dev', // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' - baseUrl: '/', + baseUrl: '/website', // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. diff --git a/web/website/package-lock.json b/website/package-lock.json similarity index 100% rename from web/website/package-lock.json rename to website/package-lock.json diff --git a/web/website/package.json b/website/package.json similarity index 100% rename from web/website/package.json rename to website/package.json diff --git a/web/website/sidebars.ts b/website/sidebars.ts similarity index 100% rename from web/website/sidebars.ts rename to website/sidebars.ts diff --git a/web/website/src/components/HomepageFeatures/index.tsx b/website/src/components/HomepageFeatures/index.tsx similarity index 100% rename from web/website/src/components/HomepageFeatures/index.tsx rename to website/src/components/HomepageFeatures/index.tsx diff --git a/web/website/src/components/HomepageFeatures/styles.module.css b/website/src/components/HomepageFeatures/styles.module.css similarity index 100% rename from web/website/src/components/HomepageFeatures/styles.module.css rename to website/src/components/HomepageFeatures/styles.module.css diff --git a/web/website/src/css/custom.css b/website/src/css/custom.css similarity index 100% rename from web/website/src/css/custom.css rename to website/src/css/custom.css diff --git a/web/website/src/pages/index.module.css b/website/src/pages/index.module.css similarity index 100% rename from web/website/src/pages/index.module.css rename to website/src/pages/index.module.css diff --git a/web/website/src/pages/index.tsx b/website/src/pages/index.tsx similarity index 100% rename from web/website/src/pages/index.tsx rename to website/src/pages/index.tsx diff --git a/web/website/static/.nojekyll b/website/static/.nojekyll similarity index 100% rename from web/website/static/.nojekyll rename to website/static/.nojekyll diff --git a/web/website/static/img/docusaurus-social-card.jpg b/website/static/img/docusaurus-social-card.jpg similarity index 100% rename from web/website/static/img/docusaurus-social-card.jpg rename to website/static/img/docusaurus-social-card.jpg diff --git a/web/website/static/img/favicon.ico b/website/static/img/favicon.ico similarity index 100% rename from web/website/static/img/favicon.ico rename to website/static/img/favicon.ico diff --git a/web/website/static/img/git-logo.svg b/website/static/img/git-logo.svg similarity index 100% rename from web/website/static/img/git-logo.svg rename to website/static/img/git-logo.svg diff --git a/web/website/static/img/logo.svg b/website/static/img/logo.svg similarity index 100% rename from web/website/static/img/logo.svg rename to website/static/img/logo.svg diff --git a/web/website/static/img/open_source_initiative.svg b/website/static/img/open_source_initiative.svg similarity index 100% rename from web/website/static/img/open_source_initiative.svg rename to website/static/img/open_source_initiative.svg diff --git a/web/website/static/img/soroban-wordmark-temp.svg b/website/static/img/soroban-wordmark-temp.svg similarity index 100% rename from web/website/static/img/soroban-wordmark-temp.svg rename to website/static/img/soroban-wordmark-temp.svg diff --git a/web/website/static/img/undraw_docusaurus_react.svg b/website/static/img/undraw_docusaurus_react.svg similarity index 100% rename from web/website/static/img/undraw_docusaurus_react.svg rename to website/static/img/undraw_docusaurus_react.svg diff --git a/web/website/tsconfig.json b/website/tsconfig.json similarity index 100% rename from web/website/tsconfig.json rename to website/tsconfig.json