Skip to content

Commit e1c635e

Browse files
committed
feat: add link to autocomplete
1 parent 7107557 commit e1c635e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

app/_components/sections/overview-grid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const PatternContent = ({ pattern }: { pattern: Pattern }) => (
6666
{pattern.icon && <pattern.icon className="h-8 w-8 text-primary" />}
6767
{pattern.comingSoon && (
6868
<Badge variant="outline">
69-
Coming soon
69+
<span className="text-[10px]">Coming soon</span>
7070
</Badge>
7171
)}
7272
</div>

app/_constants/patterns/forms.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ import {
2626
} from "lucide-react";
2727

2828
export const formPatterns = [
29+
{
30+
title: 'Autocomplete',
31+
description: 'Suggest options as users type',
32+
href: '/docs/forms/autocomplete',
33+
icon: Search
34+
},
2935
{
3036
title: 'Button',
3137
description: 'Trigger actions and submit forms',

content/en/about/about.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About UX Patterns for Devs
22

3-
**UX Patterns for Developers** was created by [David Dias](https://thedaviddias.com). It is a free collection of UX patterns towards developers who want to understand how to build effective UI components accessible and usable.
3+
**UX Patterns for Developers** is a free collection of UX patterns towards developers who want to understand how to build effective UI components accessible and usable.
44

55
It was created by [David Dias](https://thedaviddias.com).
66

0 commit comments

Comments
 (0)