"use client"; import Sticky from 'react-sticky-el'; import { CheckIcon, ChevronLeft, ChevronRight, EyeIcon, EyeOffIcon, Github, HomeIcon, RabbitIcon, ShieldAlertIcon, ShieldCheck, SidebarCloseIcon, SidebarIcon, SpaceIcon, SplitSquareHorizontal, SplitSquareVertical, XIcon, } from "lucide-react"; import { Cross1Icon, EyeClosedIcon, HeartFilledIcon, LockClosedIcon, QuestionMarkIcon, ReloadIcon, UpdateIcon, } from "@radix-ui/react-icons"; import Image from "next/image"; import Link from "next/link"; import { Button } from './ui/button'; import { COLORS } from './create-theme'; import { Slider } from './ui/slider'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from './ui/table'; import React, { useState } from 'react'; import { ny } from '@/lib/utils'; function Checkmark() { return ( ); } function Cross() { return ( ); } function Question() { return ( ); } export default function Features() { const [feature, setFeature] = useState(0); React.useEffect(() => { const interval = setInterval(() => { setFeature((feature) => (feature + 1) % 3); }, 3000); return () => clearInterval(interval); }); return (

Goodbye bad performance

We constantly tweak firefox's engine and settings to make it faster than ever. Learn more

Privacy first

We don't track you. We don't sell your data. We don't even know who you are. Learn more

Secure by default

We are always using the latest security features from firefox to keep you safe. Learn more

User experience comes first

We are always looking for ways to make your experience better. Always looking for feedback and suggestions!

Customization is key

We are always looking for ways to make your experience better. With stackable themes that can be mixed and matched, you can create a browser that is truly yours. Learn more

{COLORS.map((color) => (
))}
Checkout our themes store

Compact mode is here!

With a new compact mode, you can save space and focus on what matters.

Killer feature
What makes Zen Browser different?
How Zen compares to other browsers Zen Floorp LibreWolf Fine-grained security like sandboxing Optimized for peak performance Based on the latest Firefox Customizable with cutting-edge features

Open source

Zen Browser is open source and always will be. You can check out the source code on our Github!

Updated

We are always working on new features and improvements. You can expect regular updates to keep your browser up to date.

Community

Zen Browser is built by a community of passionate developers and designers. You can join us on our Discord!

Your Data

We are always looking for ways to improve your privacy. Zen Browser comes with built-in privacy features to keep you safe.

Improvements

We are always looking for ways to make Zen Browser better. You can expect regular updates with new features and improvements.

setFeature(0)}>

Split view

Split your browser into two windows to work more efficiently.

setFeature(1)}>

Workspaces

Organize your tabs into workspaces to keep things tidy.

setFeature(2)}>

Sidebar

Keep your favorite websites at your fingertips with the sidebar.

); }