Animated Tab Background
Animated Tab Background is a React and Tailwind CSS navigation component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
navigation
What it is
Animated Tab Background is a React and Tailwind CSS navigation component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Four free copies a week. No card.
Needs
npm i lucide-react
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Animated Tab Background
import { Home, PhoneCall, Settings, User } from 'lucide-react';
import { AnimatedBackground } from '@/components/core/animated-background';
export function AnimatedTabs() {
const TABS = [
{
label: 'Home',
icon: <Home className='h-5 w-5' />,
},
{
label: 'About',
icon: <User className='h-5 w-5' />,
},
{
label: 'Services',
icon: <Settings className='h-5 w-5' />,
},
{
label: 'Contact',
icon: <PhoneCall className='h-5 w-5' />,
},
];
return (
<div className='absolute bottom-8'>
<div className='flex w-full space-x-2 rounded-xl border border-zinc-950/10 bg-white p-2'>
<AnimatedBackground
defaultValue={TABS[0].label}
className='rounded-lg bg-zinc-100'
transition={{
type: 'spring',
bounce: 0.2,
duration: 0.3,
}}
>
{TABS.map((tab) => (
<button
key={tab.label}
data-id={tab.label}
type='button'
className='inline-flex h-9 w-9 items-center justify-center text-zinc-500 transition-colors duration-100 focus-visible:outline-2 data-[checked=true]:text-zinc-950'
>
{tab.icon}
</button>
))}
</AnimatedBackground>
</div>
</div>
);
}