Skip to content

Commit cfdf47a

Browse files
WilliamBerryiiiBill Berry
andauthored
refactor(docs): rename Docusaurus site to Physical AI Toolchain (#224)
## Description Renamed the Docusaurus documentation site to reflect the project's new name, **Physical AI Toolchain**. Updated the site title, tagline, navbar, homepage hero section, npm package name, and corresponding test infrastructure. All changes were scoped to `docs/docusaurus/` with no impact on root configuration, infrastructure, or deploy scripts. ## Type of Change - [ ] 🐛 Bug fix (non-breaking change fixing an issue) - [ ] ✨ New feature (non-breaking change adding functionality) - [ ] 💥 Breaking change (fix or feature causing existing functionality to change) - [ ] 📚 Documentation update - [ ] 🏗️ Infrastructure change (Terraform/IaC) - [x] ♻️ Refactoring (no functional changes) ## Component(s) Affected - [ ] `deploy/000-prerequisites` - Azure subscription setup - [ ] `deploy/001-iac` - Terraform infrastructure - [ ] `deploy/002-setup` - OSMO control plane / Helm - [ ] `deploy/004-workflow` - Training workflows - [ ] `src/training` - Python training scripts - [x] `docs/` - Documentation ## Testing Performed - [ ] Terraform `plan` reviewed (no unexpected changes) - [ ] Terraform `apply` tested in dev environment - [ ] Training scripts tested locally with Isaac Sim - [ ] OSMO workflow submitted successfully - [ ] Smoke tests passed (`smoke_test_azure.py`) ## Documentation Impact - [x] No documentation changes needed - [ ] Documentation updated in this PR - [ ] Documentation issue filed ## Bug Fix Checklist *N/A — this is a refactoring PR.* - [ ] Linked to issue being fixed - [ ] Regression test included, OR - [ ] Justification for no regression test: ## Checklist - [x] My code follows the [project conventions](copilot-instructions.md) - [x] Commit messages follow [conventional commit format](instructions/commit-message.instructions.md) - [x] I have performed a self-review - [x] Documentation impact assessed above - [x] No new linting warnings introduced Co-authored-by: Bill Berry <wbery@microsoft.com>
1 parent 6a261ab commit cfdf47a

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/docusaurus/__tests__/__mocks__/@docusaurus/useDocusaurusContext.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export default function useDocusaurusContext() {
22
return {
33
siteConfig: {
4-
title: 'Azure NVIDIA Robotics Reference Architecture',
5-
tagline: 'End-to-end reference architecture for cloud-to-edge robotics.',
4+
title: 'Physical AI Toolchain',
5+
tagline: 'Production-ready framework for training, deploying, and operating physical AI solutions on Azure with NVIDIA Isaac.',
66
url: 'https://microsoft.github.io',
77
baseUrl: '/physical-ai-toolchain/',
88
},

docs/docusaurus/__tests__/homepage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Home from '../src/pages/index';
55
describe('Homepage', () => {
66
it('renders the hero section', () => {
77
render(<Home />);
8-
expect(screen.getByText('Azure NVIDIA Robotics Reference Architecture')).toBeDefined();
8+
expect(screen.getByText('Physical AI Toolchain')).toBeDefined();
99
});
1010

1111
it('renders the Explore the platform section', () => {

docs/docusaurus/docusaurus.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const { themes: prismThemes } = require('prism-react-renderer');
33

44
/** @type {import('@docusaurus/types').Config} */
55
const config = {
6-
title: 'Azure NVIDIA Robotics Reference Architecture',
7-
tagline: 'End-to-end robotics simulation, training, and deployment on Azure',
6+
title: 'Physical AI Toolchain',
7+
tagline: 'Production-ready framework for training, deploying, and operating physical AI solutions on Azure with NVIDIA Isaac',
88
favicon: 'img/microsoft-logo.svg',
99

1010
url: 'https://microsoft.github.io',
@@ -64,7 +64,7 @@ const config = {
6464
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
6565
({
6666
navbar: {
67-
title: 'Azure NVIDIA Robotics',
67+
title: 'Physical AI Toolchain',
6868
logo: {
6969
alt: 'Microsoft',
7070
src: 'img/microsoft-logo.svg',

docs/docusaurus/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docusaurus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "azure-nvidia-robotics-docs",
2+
"name": "physical-ai-toolchain-docs",
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {

docs/docusaurus/src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export default function Home(): React.ReactElement {
1313
return (
1414
<Layout>
1515
<HeroSection
16-
title="Azure NVIDIA Robotics Reference Architecture"
17-
subtitle="End-to-end reference architecture for training, deploying, and operating autonomous robots with Azure and NVIDIA Isaac."
16+
title="Physical AI Toolchain"
17+
subtitle="Production-ready framework for training, deploying, and operating physical AI solutions on Azure with NVIDIA Isaac."
1818
/>
1919
<main>
2020
<section style={{ padding: '2rem 1.5rem' }}>

0 commit comments

Comments
 (0)