Daniel Sousa @TutoDS
Explore posts from serversDefault SEO vs Route SEO
Hi everyone
I'm facing an issue where my DEFAULT SEO overrides the ROUTE SEO.
I created two components (on the thread):
- the
default.tsx
where I import on app.tsx
;
- the page.tsx
where I import on each route.
But, when I see the meta tags, they are from the default.tsx
instead of the page.tsx
.
Any way to keep the default and override it on the routes?9 replies
Filtering projects not working
Hi everyone
I'm trying to filtering my projects list according to a "tabs", where I click and set the
searchParam
tab
, but isn't working.
Only works if I refresh the page.
This is my createAsync
:
I will leave the rest of the code in the thread3 replies
Dynamic `<head>`
Hi everyone
Is possible to put on
app.tsx
a dynamic <head>
tags (Title
, Meta
, ...)?
Basically I have all my content manage on a CMS, and I want to se the base title, the base meta tags fetching from CMS, but if I try to use createResource
on app.tsx
gives me an error.
Any suggestion6 replies
AOS alternative
Hi everyone
Any package to something like AOS: https://github.com/michalsnik/aos/tree/v2 in SolidJS/Solid Start?
I'm not good with animations and AOS is very simple. Can anyone suggest me a package for do this please?
4 replies
Slider packages
Hi everyone
Any package like https://keen-slider.io/ or others to create sliders and carousels?
Thanks 🙏
54 replies
Optimize image loading
Hi everyone
I'm trying to create an image component to be optimized the loading, etc.
I see this repository on a video: https://github.com/w3cj/solid-vs-react/blob/main/solid-image-search/src/components/ImageLoader.tsx
But I'm trying to use it and facing an error:
IntersectionObserver is not defined
I need to do someting on SolidStart?14 replies
Hydration Mismatch. Unable to find DOM nodes for hydration key
Hi everyone
After create my "card" to list all projects I starting having the error
Hydration Mismatch. Unable to find DOM nodes for hydration key
, initial I suspect that is because I'm trying to use createPagination
primitive, but after comment the code related with the pagination the error persists.
I will leave the code on the thread35 replies