'use client';
import { cn } from '@/utils/cn';
import { motion } from 'framer-motion';
import Link from 'next/link';
import { useState } from 'react';
export function PageTabs({
children,
className,
}: {
children: React.ReactNode;
className?: string;
}) {
return (
);
}
export function PageTabsLink({
href,
children,
isActive = false,
}: {
href: string;
children: React.ReactNode;
isActive?: boolean;
}) {
return (
{children}
{isActive && (
)}
);
}
export function PageTabsItem({
onClick,
children,
isActive = false,
}: {
onClick: () => void;
children: React.ReactNode;
isActive?: boolean;
}) {
return (
);
}