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/button.mdx b/content/en/patterns/forms/button.mdx
index 873a95c..89869b4 100644
--- a/content/en/patterns/forms/button.mdx
+++ b/content/en/patterns/forms/button.mdx
@@ -8,6 +8,10 @@ status: complete
import { BrowserSupport } from "@app/_components/browser-support";
import { BuildEffort } from "@app/_components/build-effort";
import { FaqStructuredData } from "@app/_components/faq-structured-data";
+import {
+ ButtonTextOnly,
+ ButtonWithIcon,
+} from "@app/_components/variations/buttons";
# Button
@@ -137,17 +141,11 @@ end
1. **Text Only**
- ```html
-
- ```
+
2. **Icon Only**
- ```html
-
- ```
+
3. **Icon + Text**
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