diff --git a/astro.config.mjs b/astro.config.mjs index ad8e88f..6044bda 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -18,5 +18,5 @@ export default defineConfig({ site: 'https://zen-browser.app', redirects: { '/themes/[...slug]': '/mods/[...slug]', - }, + } }) diff --git a/src/components/Features.astro b/src/components/Features.astro index 34aa645..e8bd7a9 100644 --- a/src/components/Features.astro +++ b/src/components/Features.astro @@ -1,7 +1,5 @@ --- -import Title from '../components/Title.astro' import Description from '../components/Description.astro' -import { Image } from 'astro:assets' import browserSidebar from '../assets/browser-sidebar.webm' import browserWorkspaces from '../assets/browser-workspaces.webm' @@ -10,7 +8,8 @@ import browserGlance from '../assets/browser-glance.webm' import browserSplitViews from '../assets/browser-splitview.webm' import { motion } from 'motion/react' -import { getTitleAnimation, getZoomInAnimation } from '../animations' +import { getTitleAnimation } from '../animations' +import Video from './Video.astro' ---
- + class="rounded-xl border-4 border-white object-cover shadow" + />
@@ -66,14 +66,15 @@ import { getTitleAnimation, getZoomInAnimation } from '../animations' distractions.

- + class="rounded-xl border-4 border-white object-cover shadow" + />
@@ -87,14 +88,15 @@ import { getTitleAnimation, getZoomInAnimation } from '../animations' opening them.

- + class="rounded-xl border-4 border-white object-cover shadow" + />
@@ -107,14 +109,15 @@ import { getTitleAnimation, getZoomInAnimation } from '../animations' Zen's split view feature allows you to view multiple tabs at once.

- + class="rounded-xl border-4 border-white object-cover shadow" + />
@@ -125,14 +128,15 @@ import { getTitleAnimation, getZoomInAnimation } from '../animations' Zen's sidebar feature allows you to view all your tabs in one place.

- + class="rounded-xl border-4 border-white object-cover shadow" + />
diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro index d937a93..83476a5 100644 --- a/src/components/NavBar.astro +++ b/src/components/NavBar.astro @@ -12,7 +12,7 @@ import { } from 'astro-navbar' import { ArrowRight, ChevronDown, Download, DownloadCloud } from 'lucide-astro' import Logo from './Logo.astro' -import { ThemeSwitch } from 'free-astro-components' +import ThemeSwitch from './ThemeSwitch.astro' ---