From 5ec0fcbb56a770076377c20d47f1a1cbb15d2ae5 Mon Sep 17 00:00:00 2001
From: "mr. M"
${releaseNote.extra.replace(/(\n)/g, "
")}
+
Please select other formats if you want to install the Optimized version.
diff --git a/src/components/branding-assets.tsx b/src/components/branding-assets.tsx index 328d92f..53746a2 100644 --- a/src/components/branding-assets.tsx +++ b/src/components/branding-assets.tsx @@ -75,7 +75,12 @@ export function BrandingAssets() { CC BY-SA 4.0 . Thanks to{" "} - + Donno (mr. Logos) {" "} for the assets. diff --git a/src/components/browser-slider.tsx b/src/components/browser-slider.tsx index a0306a0..ab866db 100644 --- a/src/components/browser-slider.tsx +++ b/src/components/browser-slider.tsx @@ -6,34 +6,46 @@ import { Slider } from "./ui/slider"; import React from "react"; export default function BrowserComplexityExample() { - const [selectedImage, setSelectedImage] = React.useState([1]); - return ( -- Zen is designed to be simple and easy to use. We believe that the best software is - the one that you don't notice. However, we can assure you that if you want customization, we have you covered -
-+ Zen is designed to be simple and easy to use. We believe that the best + software is the one that you don't notice. However, we can assure you + that if you want customization, we have you covered +
+- {description} -
+{description}
- With Zen Mods, you can customize your browsing experience - to reflect your unique style and preferences. Choose from a wide + With Zen Mods, you can customize your browsing experience to + reflect your unique style and preferences. Choose from a wide array of Mods, colors, and layouts to make Zen truly your own, transforming your browser into a personalized digital space.
diff --git a/src/components/mode-toggle.tsx b/src/components/mode-toggle.tsx index de2cb64..f07396f 100644 --- a/src/components/mode-toggle.tsx +++ b/src/components/mode-toggle.tsx @@ -12,12 +12,14 @@ export function ModeToggle() { setMounted(true); const savedTheme = localStorage.getItem("theme"); if (savedTheme) { - setTheme(savedTheme); + setTheme(savedTheme); } else { - const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches; - setTheme(prefersDark ? "dark" : "light"); + const prefersDark = window.matchMedia( + "(prefers-color-scheme: dark)", + ).matches; + setTheme(prefersDark ? "dark" : "light"); } - }, [setTheme]); + }, [setTheme]); const toggleTheme = () => { const newTheme = theme === "light" ? "dark" : "light"; diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx index 41de7e3..8be527e 100644 --- a/src/components/navigation.tsx +++ b/src/components/navigation.tsx @@ -122,9 +122,9 @@ export function Navigation() {