diff --git a/public/color-preview.png b/public/color-preview.png new file mode 100644 index 0000000..915b91e Binary files /dev/null and b/public/color-preview.png differ diff --git a/public/compact-mode.png b/public/compact-mode.png new file mode 100644 index 0000000..0dc76a9 Binary files /dev/null and b/public/compact-mode.png differ diff --git a/public/logo.png b/public/logo.png deleted file mode 100644 index 4f906fb..0000000 Binary files a/public/logo.png and /dev/null differ diff --git a/public/logos/zen-black.png b/public/logos/zen-black.png new file mode 100644 index 0000000..eab6194 Binary files /dev/null and b/public/logos/zen-black.png differ diff --git a/public/logos/zen-blue.png b/public/logos/zen-blue.png new file mode 100644 index 0000000..7cec65c Binary files /dev/null and b/public/logos/zen-blue.png differ diff --git a/public/logos/zen-brown.png b/public/logos/zen-brown.png new file mode 100644 index 0000000..767ea98 Binary files /dev/null and b/public/logos/zen-brown.png differ diff --git a/public/logos/zen-buff.png b/public/logos/zen-buff.png new file mode 100644 index 0000000..267f68e Binary files /dev/null and b/public/logos/zen-buff.png differ diff --git a/public/logos/zen-indigo.png b/public/logos/zen-indigo.png new file mode 100644 index 0000000..414c0ed Binary files /dev/null and b/public/logos/zen-indigo.png differ diff --git a/public/logos/zen-mantis.png b/public/logos/zen-mantis.png new file mode 100644 index 0000000..5b54f42 Binary files /dev/null and b/public/logos/zen-mantis.png differ diff --git a/public/logos/zen-orchid.png b/public/logos/zen-orchid.png new file mode 100644 index 0000000..fe2d512 Binary files /dev/null and b/public/logos/zen-orchid.png differ diff --git a/public/logos/zen-pink.png b/public/logos/zen-pink.png new file mode 100644 index 0000000..86e8b7c Binary files /dev/null and b/public/logos/zen-pink.png differ diff --git a/public/logos/zen-tangerine.png b/public/logos/zen-tangerine.png new file mode 100644 index 0000000..d7f349b Binary files /dev/null and b/public/logos/zen-tangerine.png differ diff --git a/public/logos/zen-turquise.png b/public/logos/zen-turquise.png new file mode 100644 index 0000000..26f7ba9 Binary files /dev/null and b/public/logos/zen-turquise.png differ diff --git a/public/logos/zen-white.png b/public/logos/zen-white.png new file mode 100644 index 0000000..f3dc736 Binary files /dev/null and b/public/logos/zen-white.png differ diff --git a/public/logos/zen-yellow.png b/public/logos/zen-yellow.png new file mode 100644 index 0000000..4058881 Binary files /dev/null and b/public/logos/zen-yellow.png differ diff --git a/src/components/features.tsx b/src/components/features.tsx index 5c45cff..eae9b4a 100644 --- a/src/components/features.tsx +++ b/src/components/features.tsx @@ -29,6 +29,8 @@ import { 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 ( @@ -49,23 +51,81 @@ function Question() { } export default function Features() { + const [feature, setFeature] = useState(0); + useEffect(() => { + setInterval(() => { + setFeature((feature) => (feature + 1) % 3); + }, 10000); + }, []); return ( -
+ Zen{'’'}s Compact Mode offers a streamlined browsing experience that maximizes your screen space, perfect for smaller screens. +
+ +
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.
Multitask effortlessly by splitting your browser into multiple views, so you can browse several sites at once.
Stay organized and clutter-free by creating workspaces tailored to your browsing needs. @@ -80,7 +140,7 @@ export default function Features() {
Seamlessly switch between work and personal profiles for a focused browsing experience. @@ -93,7 +153,7 @@ export default function Features() { alt="" />
Access favorite sites and services instantly, without leaving your current page. @@ -112,9 +172,9 @@ export default function Features() { borderWidth={2} borderRadius={12} color={["#A07CFE", "#FE8FB5", "#FFBE7B"]} - className="mt-52 flex relative flex-col items-start justify-start w-full bg-background p-12 rounded-lg md:shadow-xl" + className="w-full lg:w-1/2 mx-auto mt-52 flex relative flex-col items-start justify-start w-full bg-background lg:p-12 rounded-lg md:shadow-xl" > -
- Zen is engineered for speed, consistently outperforming competitors with every release, ensuring a faster browsing experience. -
++ Zen is engineered for speed, consistently outperforming competitors with every release, ensuring a faster browsing experience. +
+ +- Zen strikes the perfect balance between privacy and usability, allowing you to browse without compromising your data. -
++ Zen strikes the perfect balance between privacy and usability, allowing you to browse without compromising your data. +
+ +- Zen incorporates advanced security technologies that outshine other Firefox-based browsers, keeping you safe online. -
++ Zen incorporates advanced security technologies that outshine other Firefox-based browsers, keeping you safe online. +
+ ++ Zen{'’'}s Compact Mode offers a streamlined browsing experience that maximizes your screen space, perfect for smaller screens. +
+ +Zen Browser is packed with features designed to revolutionize your browsing. diff --git a/src/components/header.tsx b/src/components/header.tsx index 7ca7234..7c0426c 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -52,7 +52,7 @@ export default function Header() {