Great explanation of the Next UI. This video is very informative and easy to follow. I have just subscribed to your channel to stay updated with more content like this. Please keep up the awesome work.
Got a problem here when making the provider file it seems that the children is highlited red and give out an error of Binding element 'children' implicitly has an 'any' type.ts(7031)
Can't say anything for sure. but make sure: 1. You have updated the tailwind config 2. Added the provider to your app And always follow the documentation.
Well not entirely. Both of them are styled with Tailwind but Next UI abstracts way the complexity. And Shadcn allows you to copy paste the component and gives you full control over the component.
Great explanation of the Next UI.
This video is very informative and easy to follow. I have just subscribed to your channel to stay updated with more content like this.
Please keep up the awesome work.
Awesome, thank you!
Got a problem here when making the provider file it seems that the children is highlited red and give out an error of Binding element 'children' implicitly has an 'any' type.ts(7031)
I guess you haven't added the types for children. It should be `ReactNode`.
i prefer to use type PropsWithChildren. it just works for me.
Thanks for the video. also one other thing. pleas share a neofetch screen shot 🤣
haha.. will do in the future.
Next ui should be Mantine please. It's top tier
you have a link or separate video for your linux setup? thank you
I don't have any video. You can check my dotfiles on github but don't have a good documentation.
github.com/thatanjan/.dotfiles
What is the IDE you are using? Super cool looks on everything.
I use Neovim or Neovide to be exact.
When I saw she is using Arch I knew she knows what she is talking about
I am a boy
@@CulesCoding 😁😄
@@CulesCoding
With great power comes great responsibility
Don't misuse your power.
what operating system are you using?
ArcoLinux (hyprland version)
@@CulesCoding cool waybar tho, at first moment i thought its customised kde
@@Chikobara thanks
Even after setting up, my components are unstyled
Can't say anything for sure. but make sure:
1. You have updated the tailwind config
2. Added the provider to your app
And always follow the documentation.
@@CulesCoding I've done these exact steps
@@akshatdubey4421 Hard for me to say without seeing the code
i have the same issue
i fixed the issue by :
const {nextui} = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// ...
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
darkMode: "class",
plugins: [nextui()],
};
This is like shadcn/ui?
Well not entirely. Both of them are styled with Tailwind but Next UI abstracts way the complexity. And Shadcn allows you to copy paste the component and gives you full control over the component.
@@CulesCoding Thank you!