"use client"; import { ArrowRightIcon } from "@radix-ui/react-icons"; import { useInView } from "framer-motion"; import { useRef } from "react"; import AnimatedGradientText from "./ui/animated-gradient-text"; import { Button } from "./ui/button"; import { BorderBeam } from "./ui/border-beam"; import { ny } from "@/lib/utils"; import { ChevronDown, ChevronRight } from "lucide-react"; import Particles from "./ui/particles"; import Image from "next/image"; import Link from "next/link"; export default function Header() { const ref = useRef(null); const inView = useInView(ref, { once: true, margin: "-100px" }); return ( <>
🎉
{" "} Introducing Zen Alpha

Zen is the best way
to browse the web.

Beautifully designed, privacy-focused, and packed with features.
We care about your experience, not your data.

); }