Spaces:
Running
Running
refactor: rename Build to Create in navigation and page
Browse files- src/components/Footer.jsx +1 -1
- src/components/Header.jsx +1 -1
- src/pages/Build.jsx +1 -1
- src/pages/GettingStarted.jsx +1 -1
- src/pages/Home.jsx +3 -3
src/components/Footer.jsx
CHANGED
|
@@ -7,7 +7,7 @@ import YouTubeIcon from '@mui/icons-material/YouTube';
|
|
| 7 |
|
| 8 |
const productLinks = [
|
| 9 |
{ label: 'Get Started', href: '/getting-started', external: false },
|
| 10 |
-
{ label: '
|
| 11 |
{ label: 'Download App', href: '/download', external: false },
|
| 12 |
{ label: 'Browse Apps', href: '/apps', external: false },
|
| 13 |
{ label: 'Buy Reachy Mini', href: '/buy', external: false },
|
|
|
|
| 7 |
|
| 8 |
const productLinks = [
|
| 9 |
{ label: 'Get Started', href: '/getting-started', external: false },
|
| 10 |
+
{ label: 'Create with Python', href: '/build', external: false },
|
| 11 |
{ label: 'Download App', href: '/download', external: false },
|
| 12 |
{ label: 'Browse Apps', href: '/apps', external: false },
|
| 13 |
{ label: 'Buy Reachy Mini', href: '/buy', external: false },
|
src/components/Header.jsx
CHANGED
|
@@ -25,7 +25,7 @@ const navItems = [
|
|
| 25 |
{ label: 'Apps', href: '/apps' },
|
| 26 |
{ label: 'Get Started', href: '/getting-started' },
|
| 27 |
{ label: 'Download', href: '/download' },
|
| 28 |
-
{ label: '
|
| 29 |
{ label: 'FAQ', href: '/faq' },
|
| 30 |
{ label: 'Community', href: 'https://discord.gg/2bAhWfXme9', external: true },
|
| 31 |
];
|
|
|
|
| 25 |
{ label: 'Apps', href: '/apps' },
|
| 26 |
{ label: 'Get Started', href: '/getting-started' },
|
| 27 |
{ label: 'Download', href: '/download' },
|
| 28 |
+
{ label: 'Create', href: '/build' },
|
| 29 |
{ label: 'FAQ', href: '/faq' },
|
| 30 |
{ label: 'Community', href: 'https://discord.gg/2bAhWfXme9', external: true },
|
| 31 |
];
|
src/pages/Build.jsx
CHANGED
|
@@ -146,7 +146,7 @@ export default function Build() {
|
|
| 146 |
<Layout transparentHeader>
|
| 147 |
<PageHero
|
| 148 |
eyebrow="Developer Guide"
|
| 149 |
-
title="
|
| 150 |
subtitle="Create amazing experiences with Python or JavaScript. Control movements, access sensors, build apps, and share them with the community."
|
| 151 |
accentColor="#764ba2"
|
| 152 |
stickers={[
|
|
|
|
| 146 |
<Layout transparentHeader>
|
| 147 |
<PageHero
|
| 148 |
eyebrow="Developer Guide"
|
| 149 |
+
title="Create with Reachy Mini"
|
| 150 |
subtitle="Create amazing experiences with Python or JavaScript. Control movements, access sensors, build apps, and share them with the community."
|
| 151 |
accentColor="#764ba2"
|
| 152 |
stickers={[
|
src/pages/GettingStarted.jsx
CHANGED
|
@@ -321,7 +321,7 @@ export default function GettingStarted() {
|
|
| 321 |
<Typography variant="caption" sx={{ display: 'block', mb: 2, color: 'warning.main' }}>
|
| 322 |
🍎 Currently available for macOS only. Windows & Linux coming soon!
|
| 323 |
<br />
|
| 324 |
-
In the meantime, check the <RouterLink to="/build" style={{ color: 'inherit' }}>
|
| 325 |
</Typography>
|
| 326 |
<Button
|
| 327 |
variant="contained"
|
|
|
|
| 321 |
<Typography variant="caption" sx={{ display: 'block', mb: 2, color: 'warning.main' }}>
|
| 322 |
🍎 Currently available for macOS only. Windows & Linux coming soon!
|
| 323 |
<br />
|
| 324 |
+
In the meantime, check the <RouterLink to="/build" style={{ color: 'inherit' }}>Create section</RouterLink> to use the daemon CLI directly.
|
| 325 |
</Typography>
|
| 326 |
<Button
|
| 327 |
variant="contained"
|
src/pages/Home.jsx
CHANGED
|
@@ -178,12 +178,12 @@ function Hero() {
|
|
| 178 |
<Box
|
| 179 |
sx={{
|
| 180 |
position: 'absolute',
|
| 181 |
-
top:
|
| 182 |
-
right: -
|
| 183 |
px: 1.2,
|
| 184 |
py: 0.4,
|
| 185 |
borderRadius: '5px',
|
| 186 |
-
border: "1px solid #
|
| 187 |
}}
|
| 188 |
>
|
| 189 |
<Typography
|
|
|
|
| 178 |
<Box
|
| 179 |
sx={{
|
| 180 |
position: 'absolute',
|
| 181 |
+
top: 85,
|
| 182 |
+
right: -10,
|
| 183 |
px: 1.2,
|
| 184 |
py: 0.4,
|
| 185 |
borderRadius: '5px',
|
| 186 |
+
//border: "1px solid #FFF",
|
| 187 |
}}
|
| 188 |
>
|
| 189 |
<Typography
|