From 81f41ea0925ecf96a6feca40b34f60fc2f766b80 Mon Sep 17 00:00:00 2001 From: Shibam Roy Date: Mon, 17 Aug 2026 14:38:38 +0530 Subject: [PATCH 1/2] docs: update navigation links to use native anchor tags Replaced the component with native anchor tags for navigation, removed conflicting description. --- src/routes/(2)guides/(2)routing-and-navigation.mdx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/routes/(2)guides/(2)routing-and-navigation.mdx b/src/routes/(2)guides/(2)routing-and-navigation.mdx index 297161c488..5f1e20ef93 100644 --- a/src/routes/(2)guides/(2)routing-and-navigation.mdx +++ b/src/routes/(2)guides/(2)routing-and-navigation.mdx @@ -126,13 +126,11 @@ render( **6. Create links to your routes** -The [``](/solid-router/reference/components/a) component provides navigation to an application's routes. -Alternatively, you can use the [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a). -However, the `` component provides additional functionality including properties for CSS, `inactiveClass` and `activeClass`. + The [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) provides soft navigation to an application's routes. ```jsx import { render } from "solid-js/web"; -import { Router, Route, A } from "@solidjs/router"; +import { Router, Route } from "@solidjs/router"; import Home from "./pages/Home"; import Users from "./pages/Users"; @@ -141,8 +139,8 @@ import NotFound from "./pages/NotFound"; const App = (props) => ( <>

Site Title

{props.children} From 06b58ce485ec36c98ab61fb5803cfe4f9ba10398 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 09:18:40 +0000 Subject: [PATCH 2/2] ci: apply automated fixes --- src/routes/(2)guides/(2)routing-and-navigation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/(2)guides/(2)routing-and-navigation.mdx b/src/routes/(2)guides/(2)routing-and-navigation.mdx index 5f1e20ef93..393e7f72bd 100644 --- a/src/routes/(2)guides/(2)routing-and-navigation.mdx +++ b/src/routes/(2)guides/(2)routing-and-navigation.mdx @@ -126,7 +126,7 @@ render( **6. Create links to your routes** - The [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) provides soft navigation to an application's routes. +The [native anchor tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) provides soft navigation to an application's routes. ```jsx import { render } from "solid-js/web";