Skip to content
Open
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
6 changes: 3 additions & 3 deletions apps/docs/theme/chrome/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const COLUMNS: ReadonlyArray<FooterColumnDef> = [
{ href: '/getting-started/introduction', text: 'Getting started' },
{ href: '/concepts/tokens', text: 'Concepts' },
{ href: '/reference/styled', text: 'API reference' },
{ href: '/recipes/buttons', text: 'Recipes' },
{ href: '/recipes/dark-mode-toggle', text: 'Recipes' },
],
},
{
Expand All @@ -41,8 +41,8 @@ const COLUMNS: ReadonlyArray<FooterColumnDef> = [
title: 'Sitemap',
links: [
{ href: '/', text: 'Home' },
{ href: '/guides/design-system', text: 'Guides' },
{ href: '/recipes/buttons', text: 'Recipes' },
{ href: '/guides/performance', text: 'Guides' },
{ href: '/recipes/dark-mode-toggle', text: 'Recipes' },
{ href: '/changelog', text: 'Changelog' },
],
},
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/theme/chrome/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export function TopNav() {
{/* Right side */}
<HStack alignItems="center" gap="6px">
<NavLink href="/getting-started/introduction">Docs</NavLink>
<NavLink href="/guides/design-system">Guides</NavLink>
<NavLink href="/guides/performance">Guides</NavLink>
<NavLink href="/reference/styled">API</NavLink>
<NavLink href="/recipes/buttons">Recipes</NavLink>
<NavLink href="/recipes/dark-mode-toggle">Recipes</NavLink>
<Box w="$2" />
<ThemeToggle />
<Anchor
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/theme/landing/BentoFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function BentoFeatures() {
gridAutoRows="220px"
gap={16}
>
<BentoCellLink href="/getting-started/web-and-native" variant="feature">
<BentoCellLink href="/getting-started/cross-platform" variant="feature">
<Box>
<BentoIcon>
<Globe />
Expand Down
16 changes: 10 additions & 6 deletions apps/docs/theme/landing/ComponentGallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ export function ComponentGallery() {
}}
gap={16}
>
<GalleryCard href="/recipes/buttons" title="Buttons" count="3 variants · 4 intents">
<GalleryCard
href="/components/interactive/button"
title="Buttons"
count="3 variants · 4 intents"
>
<Box display="flex" gap={8}>
<DemoBtn variant="primary">Save</DemoBtn>
<DemoBtn variant="secondary">Cancel</DemoBtn>
Expand All @@ -36,14 +40,14 @@ export function ComponentGallery() {
</GalleryCard>

<GalleryCard
href="/recipes/forms"
href="/components/forms"
title="Inputs"
count="Field · Input · TextArea · NumberInput"
>
<DemoInput placeholder="Type a name…" defaultValue="Eleanor Ashbury" />
</GalleryCard>

<GalleryCard href="/recipes/layouts" title="Cards" count="Surface · Stack · Heading">
<GalleryCard href="/components/layout" title="Cards" count="Surface · Stack · Heading">
<Box
w={200}
p={14}
Expand Down Expand Up @@ -117,7 +121,7 @@ export function ComponentGallery() {
</Box>
</GalleryCard>

<GalleryCard href="/recipes/forms" title="Toggles" count="Switch · checkbox">
<GalleryCard href="/headless/selection/switch" title="Toggles" count="Switch · checkbox">
<Box display="inline-flex" alignItems="center" gap={8}>
<Box
as="span"
Expand Down Expand Up @@ -167,7 +171,7 @@ export function ComponentGallery() {
</Box>
</GalleryCard>

<GalleryCard href="/recipes/animation" title="Progress" count="Bar · ring">
<GalleryCard href="/headless/numeric/progress" title="Progress" count="Bar · ring">
<Box display="flex" flexDirection="column" gap={6} w={200}>
<Box h={8} bg="$colors.surface.paper3" borderRadius="4px" overflow="hidden">
<Box w="64%" h="100%" bg="$colors.accent.base" />
Expand All @@ -186,7 +190,7 @@ export function ComponentGallery() {
</Box>
</GalleryCard>

<GalleryCard href="/recipes/animation" title="Toasts" count="4 variants">
<GalleryCard href="/headless/feedback/toast" title="Toasts" count="4 variants">
<Box
display="flex"
alignItems="center"
Expand Down
Loading