/** * v0 by Vercel. * @see https://v0.dev/t/obus3LxsAfo * Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app */ import Link from "next/link" import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent } from "@/components/ui/dropdown-menu" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Toggle } from "@/components/ui/toggle" import { Sheet, SheetTrigger, SheetContent } from "@/components/ui/sheet" export default function Navbar() { return (
Acme Inc
123-456-7890
Home About Services Contact
) } function MenuIcon(props) { return ( ) } function MoonIcon(props) { return ( ) } function MountainIcon(props) { return ( ) } function PhoneIcon(props) { return ( ) } function SearchIcon(props) { return ( ) }