"use client" import * as React from "react" import Link from "next/link" import { ny } from "@/lib/utils" import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu" import Logo from "./logo" import { ModeToggle } from "./mode-toggle" import { MobileNav } from "./mobile-nav" import { HeartIcon } from "lucide-react" export const components: { title: string; href: string; description: string }[] = [ { title: "Privacy Policy", href: "/privacy-policy", description: "Learn how we handle your data. Don't worry, we don't collect anything!", }, { title: "Discord", href: "https://discord.gg/nnShMQzR4b", description: "Join our Discord server to chat with the community." }, { title: "Source Code", href: "https://github.com/zen-browser", description: "Check out our source code on GitHub and leave a star!" }, { title: "Branding Assets", href: "/branding-assets", description: "Download Zen Browser branding assets for your website or project." }, { title: "Documentation", href: "https://docs.zen-browser.app/", description: "Learn how to use Zen Browser and build your own themes." } ] export function Navigation() { return (
Getting started
  • Zen Browser

    Firefox based browser with a focus on privacy and customization.

  • Start using Zen Browser today with just a few clicks. Customize your browser with a variety of themes! Stay up to date with the latest changes.
Donate
    Support us on Patreon and get exclusive rewards and keep the project alive. Ko-fi is a way to support us with a one-time donation and help us keep the project alive.
Useful Links
    {components.map((component) => ( {component.description} ))}
) } const ListItem = React.forwardRef< React.ElementRef<"a">, React.ComponentPropsWithoutRef<"a"> >(({ className, title, children, ...props }, ref) => { return (
  • {title}

    {children}

  • ) }) ListItem.displayName = "ListItem"