import { useEffect, useState } from "react"; import Feature, { FeatureCard } from "./feature"; import { Button } from "./ui/button"; import TextReveal from "./ui/text-reveal"; import styled, { css, keyframes } from "styled-components"; import Link from "next/link"; import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, } from "./ui/table"; import { CheckIcon, EyeIcon, EyeOffIcon, RabbitIcon, XIcon, } from "lucide-react"; import { EyeClosedIcon, LockClosedIcon, QuestionMarkIcon, } from "@radix-ui/react-icons"; import ShineBorder from "./ui/shine-border"; import SparklesText from "./ui/sparkles-text"; import Image from "next/image"; import OrbitingCircles from "./ui/orbiting-circles"; import { ny } from "@/lib/utils"; function Checkmark() { return ( ); } function Cross() { return ( ); } function Question() { return ( ); } export default function Features() { const [feature, setFeature] = useState(0); useEffect(() => { setInterval(() => { setFeature((feature) => (feature + 1) % 3); }, 9000); }, []); return (

The only limit is your

Zen's theme marketplace offers a wide range of themes to customize your browsing experience. Try them out today!

Zen Logo {/* Inner Circles */} Zen Logo Zen Logo {/* Outer Circles (reverse) */} Zen Logo Zen Logo
{/**/}

What does Zen offer to ?

Discover how Zen Browser can transform your web experience with powerful features that keep you ahead. Here are
some of the features that Zen offers.

Split views

Multitask effortlessly by splitting your browser into multiple views, so you can browse several sites at once.

Workspaces

Stay organized and clutter-free by creating workspaces tailored to your browsing needs.

Profile switching

Seamlessly switch between work and personal profiles for a focused browsing experience.

Side web panels

Access favorite sites and services instantly, without leaving your current page.

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

Built for

Zen is engineered for speed, consistently outperforming competitors with every release, ensuring a faster browsing experience.

Privacy is

Zen strikes the perfect balance between privacy and usability, allowing you to browse without compromising your data.

Security is

Zen incorporates advanced security technologies that outshine other Firefox-based browsers, keeping you safe online.

Introducing

Zen{'’'}s Compact Mode offers a streamlined browsing experience that maximizes your screen space, perfect for smaller screens.

Want more?

Zen Browser is packed with features designed to revolutionize your browsing. Download it today and experience a new way to explore the web.

); }