'use client' import React from 'react' import { cn } from '@/lib/utils' import { Icon } from '@/components/ui/icon' import { Button } from "@/components/ui/button" interface navProps { dotStyle?: boolean links: { title: string href?: string active: boolean label?: string icon?: any }[] } const Nav = ({ links, dotStyle = false }: navProps) => { if (dotStyle) { return ( ) } return ( ) } export default Nav