diff --git a/app/_components/ui/button.tsx b/app/_components/ui/button.tsx index 1f2a016..3fddc42 100644 --- a/app/_components/ui/button.tsx +++ b/app/_components/ui/button.tsx @@ -48,4 +48,3 @@ const Button = React.forwardRef( Button.displayName = 'Button' export { Button, buttonVariants }; - diff --git a/content/en/glossary/aria-attributes.mdx b/content/en/glossary/aria-attributes.mdx index 3643df8..c1b6d1c 100644 --- a/content/en/glossary/aria-attributes.mdx +++ b/content/en/glossary/aria-attributes.mdx @@ -36,4 +36,3 @@ ARIA (Accessible Rich Internet Applications) attributes are HTML attributes that ## Related Patterns - [Pagination](/patterns/navigation/pagination) -- [Navigation Patterns](/patterns/navigation) diff --git a/content/en/pattern-guide/choosing-input-types.mdx b/content/en/pattern-guide/choosing-input-types.mdx index 7fb5f07..3fb70e2 100644 --- a/content/en/pattern-guide/choosing-input-types.mdx +++ b/content/en/pattern-guide/choosing-input-types.mdx @@ -33,7 +33,7 @@ import { PatternNextSteps } from "@app/_components/pattern-comparison/pattern-ne - + {/* */} @@ -399,17 +399,17 @@ export const nextStepsData = { { title: "Text Input Implementation", description: "How to implement and style text inputs", - href: "/patterns/forms/text-input", + href: "/patterns/forms/text-field", }, { title: "Select Component Guide", description: "Building accessible select components", - href: "/patterns/forms/select", + href: "/patterns/forms/selection-input", }, { - title: "Radio & Checkbox Patterns", + title: "Radio Pattern", description: "Best practices for option selection", - href: "/patterns/forms/radio-checkbox", + href: "/patterns/forms/radio", }, ], }; diff --git a/content/en/patterns/forms/input-selection-guide.mdx b/content/en/patterns/forms/input-selection-guide.mdx index 711adf4..63167ad 100644 --- a/content/en/patterns/forms/input-selection-guide.mdx +++ b/content/en/patterns/forms/input-selection-guide.mdx @@ -4,7 +4,9 @@ description: "Learn how to select the most appropriate input types for your web icon: Text --- -### When to use Different Types of Text Fields? +# Input Selection Guide + +## When to use Different Types of Text Fields? ```mermaid graph TD diff --git a/content/en/patterns/forms/password.mdx b/content/en/patterns/forms/password.mdx index 41adf86..c3717f1 100644 --- a/content/en/patterns/forms/password.mdx +++ b/content/en/patterns/forms/password.mdx @@ -141,8 +141,6 @@ Password fields are commonly used in **authentication forms, account creation, a ## Related Patterns - [Text Field](/patterns/forms/text-field) – Standard input for non-sensitive text. -- [Two-Factor Authentication](/patterns/security/2fa) – Additional authentication layer. -- [Security Best Practices](/patterns/security/best-practices) – Guidelines for secure input handling. ## Frequently Asked Questions