Spaces:
Running
Running
chore: reorder nav items (Get Started, Download, Apps)
Browse files- src/components/Header.jsx +1 -1
- src/pages/Home.jsx +3 -3
src/components/Header.jsx
CHANGED
|
@@ -22,9 +22,9 @@ import CloseIcon from '@mui/icons-material/Close';
|
|
| 22 |
import OpenInNewIcon from '@mui/icons-material/OpenInNew';
|
| 23 |
|
| 24 |
const navItems = [
|
| 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 },
|
|
|
|
| 22 |
import OpenInNewIcon from '@mui/icons-material/OpenInNew';
|
| 23 |
|
| 24 |
const navItems = [
|
|
|
|
| 25 |
{ label: 'Get Started', href: '/getting-started' },
|
| 26 |
{ label: 'Download', href: '/download' },
|
| 27 |
+
{ label: 'Apps', href: '/apps' },
|
| 28 |
{ label: 'Create', href: '/build' },
|
| 29 |
{ label: 'FAQ', href: '/faq' },
|
| 30 |
{ label: 'Community', href: 'https://discord.gg/2bAhWfXme9', external: true },
|
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 |
-
|
| 187 |
}}
|
| 188 |
>
|
| 189 |
<Typography
|
|
|
|
| 178 |
<Box
|
| 179 |
sx={{
|
| 180 |
position: 'absolute',
|
| 181 |
+
top: 25,
|
| 182 |
+
right: -65,
|
| 183 |
px: 1.2,
|
| 184 |
py: 0.4,
|
| 185 |
borderRadius: '5px',
|
| 186 |
+
border: "1px solid #FFF",
|
| 187 |
}}
|
| 188 |
>
|
| 189 |
<Typography
|