seL3cT
seL3cT
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
i really appreciate the help
11 replies
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
Thanks, both of these sources helped
11 replies
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
my english is not the best could you please tell me where i should put my navbar?
11 replies
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
is there any fix for it
11 replies
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
yes i get that but i want to have client side rendering
11 replies
SSolidJS
Created by seL3cT on 2/4/2025 in #support
Solid routing
import { A } from "@solidjs/router";

function Navbar () {
return (
<nav>
<ul>
<li><A href="/">Home</A></li>
<li><A href="/productie">Huidige Productie</A></li>
<li><A href="/over_ons">Over Ons</A></li>
<li><A href="/historiek">Historiek</A></li>
<li><A href="/contact">Contact</A></li>
<li>
<a href="https://instagram.com" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://facebook.com" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
</ul>
</nav>
)
}

export default Navbar
import { A } from "@solidjs/router";

function Navbar () {
return (
<nav>
<ul>
<li><A href="/">Home</A></li>
<li><A href="/productie">Huidige Productie</A></li>
<li><A href="/over_ons">Over Ons</A></li>
<li><A href="/historiek">Historiek</A></li>
<li><A href="/contact">Contact</A></li>
<li>
<a href="https://instagram.com" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://facebook.com" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
</ul>
</nav>
)
}

export default Navbar
11 replies