Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export default function useDocusaurusContext() {
return {
siteConfig: {
title: 'Azure NVIDIA Robotics Reference Architecture',
tagline: 'End-to-end reference architecture for cloud-to-edge robotics.',
title: 'Physical AI Toolchain',
tagline: 'Production-ready framework for training, deploying, and operating physical AI solutions on Azure with NVIDIA Isaac.',
url: 'https://microsoft.github.io',
baseUrl: '/physical-ai-toolchain/',
},
Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus/__tests__/homepage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Home from '../src/pages/index';
describe('Homepage', () => {
it('renders the hero section', () => {
render(<Home />);
expect(screen.getByText('Azure NVIDIA Robotics Reference Architecture')).toBeDefined();
expect(screen.getByText('Physical AI Toolchain')).toBeDefined();
});

it('renders the Explore the platform section', () => {
Expand Down
6 changes: 3 additions & 3 deletions docs/docusaurus/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const { themes: prismThemes } = require('prism-react-renderer');

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

url: 'https://microsoft.github.io',
Expand Down Expand Up @@ -64,7 +64,7 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: 'Azure NVIDIA Robotics',
title: 'Physical AI Toolchain',
logo: {
alt: 'Microsoft',
src: 'img/microsoft-logo.svg',
Expand Down
4 changes: 2 additions & 2 deletions docs/docusaurus/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/docusaurus/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "azure-nvidia-robotics-docs",
"name": "physical-ai-toolchain-docs",
"version": "0.0.0",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions docs/docusaurus/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function Home(): React.ReactElement {
return (
<Layout>
<HeroSection
title="Azure NVIDIA Robotics Reference Architecture"
subtitle="End-to-end reference architecture for training, deploying, and operating autonomous robots with Azure and NVIDIA Isaac."
title="Physical AI Toolchain"
subtitle="Production-ready framework for training, deploying, and operating physical AI solutions on Azure with NVIDIA Isaac."
/>
<main>
<section style={{ padding: '2rem 1.5rem' }}>
Expand Down
Loading