Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: initial move to "divvi" #128

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projects": {
"staging": "mobile-stack-docs-staging",
"production": "mobile-stack-docs"
"staging": "divvi-docs-staging",
"production": "divvi-docs"
}
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ This command generates static content into the `build` directory and can be serv

GitHub workflows deploy automatically to:

- staging: <https://mobile-stack-docs-staging.web.app>
- production: <https://mobile-stack-docs.web.app>
- production: <https://docs.mobilestack.xyz>
- staging: <https://divvi-docs-staging.web.app>
- production: <https://divvi-docs.web.app>
- production: <https://docs.divvi.xyz>
16 changes: 8 additions & 8 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ import type { Config } from '@docusaurus/types'
import type * as Preset from '@docusaurus/preset-classic'

const config: Config = {
title: 'Mobile Stack Docs',
tagline: 'Documentation for building with Mobile Stack',
title: 'Divvi Docs',
tagline: 'Documentation for building with Divvi',
favicon: 'img/favicon.ico',

// Set the production url of your site here
url: 'https://docs.mobilestack.xyz',
url: 'https://docs.divvi.xyz',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'mobilestack-xyz', // Usually your GitHub org/user name.
organizationName: 'divvixyz', // Usually your GitHub org/user name.
projectName: 'docs', // Usually your repo name.

onBrokenLinks: 'throw',
Expand Down Expand Up @@ -75,14 +75,14 @@ const config: Config = {

themeConfig: {
navbar: {
title: 'Mobile Stack Docs',
title: 'Divvi Docs',
logo: {
alt: 'Mobile Stack Logo',
alt: 'Divvi Logo',
src: 'img/mobile-stack-icon.svg',
},
items: [
{
href: 'https://github.com/mobilestack-xyz/docs',
href: 'https://github.com/divvixyz/docs',
label: 'GitHub',
position: 'right',
},
Expand All @@ -109,7 +109,7 @@ const config: Config = {
items: [
{
label: 'GitHub',
href: 'https://github.com/mobilestack-xyz',
href: 'https://github.com/divvixyz',
},
],
},
Expand Down