import { Tabs, TabsContent, TabsContents, TabsList, TabsTrigger } from '@/components/ui/motion-tabs' const tabs = [ { name: 'Explore', value: 'explore', content: ( <> Discover fresh ideas, trending topics, and hidden gems curated just for you. Start exploring and let your curiosity lead the way! ) }, { name: 'Favorites', value: 'favorites', content: ( <> All your favorites are saved here. Revisit articles, collections, and moments you love, any time you want a little inspiration. ) }, { name: 'Surprise Me', value: 'surprise', content: ( <> Surprise! Here's something unexpected—a fun fact, a quirky tip, or a daily challenge. Come back for a new surprise every day! ) } ] const AnimatedTabsDemo = () => { return (
{tabs.map(tab => ( {tab.name} ))} {tabs.map(tab => (

{tab.content}

))}

Inspired by{' '} Animate UI

) } export default AnimatedTabsDemo