Components
npx shadcn@latest add https://21st.dev/r/preetsuthar17/animated-tabsLoading preview...
import { AnimatedTabs } from "@/components/ui/animated-tabs"
const Demo = () => {
return (
<>
<AnimatedTabs
tabs={[
{ label: "Home" },
{ label: "About" },
{ label: "Resources" },
{ label: "Docs" },
{ label: "Support" },
]}
/>;
</>
)
}
export {Demo }