#TailwindUI Components slightly broken
11 messages · Page 1 of 1 (latest)
Does the tailwindui component have any script tag?
There are no script tags anywhere in the project
The navbar uses checkbox?
Hmm it seems that it might be that the HTML-only navbar is not fully functional
What is supposed to toggle the navbar visibility?
HTML-only navbar
In that case, no checkbox, no interactivity
yeah thats what I found
Is headlessui even supported in astro?
It seems that for example for simple Components like Popovers, when using the following code
<Popover className="relative">
<Popover.Button>Solutions</Popover.Button>
<Popover.Panel className="absolute z-10">
<div className="grid grid-cols-2">
<a href="/analytics">Analytics</a>
<a href="/engagement">Engagement</a>
<a href="/security">Security</a>
<a href="/integrations">Integrations</a>
</div>
<img src="/solutions.jpg" alt="" />
</Popover.Panel>
</Popover>```
it will just error out because `<Popover.Button /> is missing a parent <Popover /> component.
`