Skip to content

Commit 7107557

Browse files
committed
fix: update dupplicate icons
1 parent 22b7774 commit 7107557

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

app/_components/subscribe.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const SubscribeForm = () => {
6161
};
6262

6363
return (
64-
<div className="flex flex-col mt-10 items-center justify-center py-10 px-4 text-center border border-neutral-400 dark:border-neutral-800 rounded-xl">
64+
<div className="flex flex-col mt-10 items-center justify-center py-10 px-4 text-center border border-neutral-400 dark:border-neutral-600 rounded-xl">
6565
<h2 className="text-2xl font-bold mb-5 text-foreground">
6666
Get notified when new patterns are added!
6767
</h2>

app/_components/suggest-pattern.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Button } from './ui/button'
33

44
export function SuggestPattern() {
55
return (
6-
<div className="flex flex-col mt-10 items-center justify-center py-10 px-4 text-center border border-neutral-400 dark:border-neutral-800 rounded-xl">
6+
<div className="flex flex-col mt-10 items-center justify-center py-10 px-4 text-center border border-neutral-400 dark:border-neutral-600 rounded-xl">
77
<h2 className="text-2xl font-bold mb-5 text-foreground">Got a pattern request?</h2>
88
<p className="text-lg text-muted-foreground mb-6">
99
Let us know, and we&apos;ll add it!

app/_constants/patterns/navigation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ArrowUp, Grid3X3, Layout, LayoutDashboard, Menu, Navigation2, SidebarIcon } from "lucide-react";
1+
import { ArrowUp, Grid3X3, Layout, LayoutDashboard, Menu, Navigation2, Route, SidebarIcon } from "lucide-react";
22

33
export const navigationPatterns = [
44
{
@@ -30,7 +30,7 @@ export const navigationPatterns = [
3030
{
3131
title: 'Pagination',
3232
description: 'Navigate through multiple pages of content',
33-
icon: Navigation2,
33+
icon: Route,
3434
},
3535
{
3636
title: 'Sidebar',

app/_constants/patterns/user-feedback.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AlertCircle, Bell, Cookie, Loader, LoaderCircle, Loader as ProgressLoader } from "lucide-react";
1+
import { AlertCircle, Bell, Cookie, Gauge, Loader, LoaderCircle } from "lucide-react";
22

33
export const userFeedbackPatterns = [
44
{
@@ -19,7 +19,7 @@ export const userFeedbackPatterns = [
1919
{
2020
title: 'Progress Indicator',
2121
description: 'Show completion status of an operation',
22-
icon: ProgressLoader
22+
icon: Gauge
2323
},
2424
{
2525
title: 'Skeleton',

content/en/docs/_meta.tsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@ export default {
1212
'getting-started': '',
1313
_: {
1414
title: <Separator>Categories</Separator>,
15-
type: 'separator'
15+
type: 'separator',
1616
},
17-
"navigation": "Layout & Navigation",
18-
"forms": "Inputs & Forms",
17+
'navigation': {
18+
title: 'Layout & Navigation',
19+
theme: {
20+
collapsed: false
21+
}
22+
},
23+
'forms': {
24+
title: 'Inputs & Forms',
25+
theme: {
26+
collapsed: false
27+
}
28+
}
1929
}

0 commit comments

Comments
 (0)