mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 01:10:02 +02:00
Formatted the project and rebuild mods list
This commit is contained in:
parent
cc65eceab6
commit
5d8c4a5fc3
6 changed files with 29 additions and 35 deletions
|
@ -22,9 +22,9 @@ import Image from 'astro/components/Image.astro'
|
||||||
{...getTitleAnimation(0.6)}
|
{...getTitleAnimation(0.6)}
|
||||||
className="px-4 md:px-24 lg:w-1/2 lg:px-0"
|
className="px-4 md:px-24 lg:w-1/2 lg:px-0"
|
||||||
>
|
>
|
||||||
We make it not only a priority, but a necessity to ensure that Zen always provides
|
We make it not only a priority, but a necessity to ensure that Zen always
|
||||||
the best experience for you. We are committed to making Zen the most
|
provides the best experience for you. We are committed to making Zen the
|
||||||
beautiful, productive, and privacy-focused browser out there.
|
most beautiful, productive, and privacy-focused browser out there.
|
||||||
</motion.p>
|
</motion.p>
|
||||||
<div
|
<div
|
||||||
class="mt-6 flex w-full flex-wrap gap-3 px-4 sm:gap-10 sm:px-0 md:justify-center"
|
class="mt-6 flex w-full flex-wrap gap-3 px-4 sm:gap-10 sm:px-0 md:justify-center"
|
||||||
|
|
|
@ -10,7 +10,11 @@ import SplitViewsVideo from '../assets/SplitViews.mp4'
|
||||||
|
|
||||||
import Video from './Video.astro'
|
import Video from './Video.astro'
|
||||||
|
|
||||||
const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.props
|
const {
|
||||||
|
title1 = 'Productivity',
|
||||||
|
title2 = 'at',
|
||||||
|
title3 = 'its best',
|
||||||
|
} = Astro.props
|
||||||
---
|
---
|
||||||
|
|
||||||
<section
|
<section
|
||||||
|
@ -21,7 +25,9 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
<motion.span client:load {...getTitleAnimation(0.2)}>
|
<motion.span client:load {...getTitleAnimation(0.2)}>
|
||||||
{title1}
|
{title1}
|
||||||
</motion.span>
|
</motion.span>
|
||||||
<motion.span client:load {...getTitleAnimation(0.4)}> {title2} </motion.span>
|
<motion.span client:load {...getTitleAnimation(0.4)}>
|
||||||
|
{title2}
|
||||||
|
</motion.span>
|
||||||
<motion.span client:load {...getTitleAnimation(0.6)}>
|
<motion.span client:load {...getTitleAnimation(0.6)}>
|
||||||
{title3}
|
{title3}
|
||||||
</motion.span>
|
</motion.span>
|
||||||
|
@ -31,7 +37,9 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
Browsers should be tools that help you get things done, not distractions
|
Browsers should be tools that help you get things done, not distractions
|
||||||
that keep you from your work.
|
that keep you from your work.
|
||||||
</motion.p>
|
</motion.p>
|
||||||
<div class="mt-6 flex flex-col justify-between gap-2 lg:flex-row mb-12 lg:mb-0">
|
<div
|
||||||
|
class="mb-12 mt-6 flex flex-col justify-between gap-2 lg:mb-0 lg:flex-row"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
id="features-list"
|
id="features-list"
|
||||||
class="relative flex w-full flex-col gap-3 md:flex-row lg:w-1/3 lg:flex-col"
|
class="relative flex w-full flex-col gap-3 md:flex-row lg:w-1/3 lg:flex-col"
|
||||||
|
@ -68,8 +76,8 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
>
|
>
|
||||||
<Description class="text-2xl font-bold">Glance</Description>
|
<Description class="text-2xl font-bold">Glance</Description>
|
||||||
<Description>
|
<Description>
|
||||||
Zen's Glance lets you preview tabs without switching to them,
|
Zen's Glance lets you preview tabs without switching to them, so you
|
||||||
so you can quickly find the page you're looking for.
|
can quickly find the page you're looking for.
|
||||||
</Description>
|
</Description>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
<motion.div
|
<motion.div
|
||||||
|
@ -80,8 +88,8 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
>
|
>
|
||||||
<Description class="text-2xl font-bold">Split View</Description>
|
<Description class="text-2xl font-bold">Split View</Description>
|
||||||
<Description>
|
<Description>
|
||||||
Zen's Split View lets you view up to 4 tabs side by side, so you
|
Zen's Split View lets you view up to 4 tabs side by side, so you can
|
||||||
can compare information or multitask easily.
|
compare information or multitask easily.
|
||||||
</Description>
|
</Description>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -137,8 +145,8 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
'loadeddata',
|
'loadeddata',
|
||||||
() => {
|
() => {
|
||||||
const videoParentRect = video.parentElement?.getBoundingClientRect()
|
const videoParentRect = video.parentElement?.getBoundingClientRect()
|
||||||
const videoRect = video.getBoundingClientRect();
|
const videoRect = video.getBoundingClientRect()
|
||||||
const originalY = video.style.transform;
|
const originalY = video.style.transform
|
||||||
// Always make the video fit the parent
|
// Always make the video fit the parent
|
||||||
let y =
|
let y =
|
||||||
rect.top -
|
rect.top -
|
||||||
|
@ -158,7 +166,7 @@ const { title1 = 'Productivity', title2 = 'at', title3 = 'its best' } = Astro.pr
|
||||||
y = rect.height * index - videoRect.height / 2 + 25
|
y = rect.height * index - videoRect.height / 2 + 25
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
video.remove();
|
video.remove()
|
||||||
animate(
|
animate(
|
||||||
videoCopy,
|
videoCopy,
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,10 +7,6 @@ import Features from '../components/Features.astro'
|
||||||
<main
|
<main
|
||||||
class="relative mx-auto flex flex-col items-center gap-24 px-6 lg:px-24 xl:flex-row"
|
class="relative mx-auto flex flex-col items-center gap-24 px-6 lg:px-24 xl:flex-row"
|
||||||
>
|
>
|
||||||
<Features
|
<Features title1="Welcome" title2="to" title3="Zen!" />
|
||||||
title1="Welcome"
|
|
||||||
title2="to"
|
|
||||||
title3="Zen!"
|
|
||||||
/>
|
|
||||||
</main>
|
</main>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
@ -11,7 +11,7 @@ import Video from '../components/Video.astro'
|
||||||
|
|
||||||
import whatsNewVideo from '../assets/whats-new.mp4'
|
import whatsNewVideo from '../assets/whats-new.mp4'
|
||||||
|
|
||||||
const latestVersion = releaseNotes[0];
|
const latestVersion = releaseNotes[0]
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="What's New - Zen Browser">
|
<Layout title="What's New - Zen Browser">
|
||||||
|
|
|
@ -363,9 +363,7 @@
|
||||||
"version": "1.0.0-a.13",
|
"version": "1.0.0-a.13",
|
||||||
"date": "05/08/2024",
|
"date": "05/08/2024",
|
||||||
"extra": "This is a smaller release to fix some bugs and improve some small details.\n\nIm going to try doing more frequent releases from now on, see how it goes.",
|
"extra": "This is a smaller release to fix some bugs and improve some small details.\n\nIm going to try doing more frequent releases from now on, see how it goes.",
|
||||||
"features": [
|
"features": ["Allow to remember sidebar width even after collapsing it."],
|
||||||
"Allow to remember sidebar width even after collapsing it."
|
|
||||||
],
|
|
||||||
"fixes": [
|
"fixes": [
|
||||||
{
|
{
|
||||||
"description": "Task Manager Icon Missing in Flatpak Version",
|
"description": "Task Manager Icon Missing in Flatpak Version",
|
||||||
|
@ -921,9 +919,7 @@
|
||||||
"image": true,
|
"image": true,
|
||||||
"workflowId": 11000317603,
|
"workflowId": 11000317603,
|
||||||
"extra": "This update addresses some significant issues with the previous release.\n\nWe appreciate your patience and support!",
|
"extra": "This update addresses some significant issues with the previous release.\n\nWe appreciate your patience and support!",
|
||||||
"features": [
|
"features": ["Added a new system for handling keyboard shortcuts"],
|
||||||
"Added a new system for handling keyboard shortcuts"
|
|
||||||
],
|
|
||||||
"fixes": [
|
"fixes": [
|
||||||
{
|
{
|
||||||
"description": "The New Tab button is not visible",
|
"description": "The New Tab button is not visible",
|
||||||
|
@ -980,9 +976,7 @@
|
||||||
"Enabled container tabs by default",
|
"Enabled container tabs by default",
|
||||||
"Improved Expand Tabs on Hover layout"
|
"Improved Expand Tabs on Hover layout"
|
||||||
],
|
],
|
||||||
"themeChanges": [
|
"themeChanges": ["Toggle inputs will not use the themed tertiary color"],
|
||||||
"Toggle inputs will not use the themed tertiary color"
|
|
||||||
],
|
|
||||||
"breakingChanges": [
|
"breakingChanges": [
|
||||||
"The keyboard shortcuts will be overriden by the defaults ones in this update"
|
"The keyboard shortcuts will be overriden by the defaults ones in this update"
|
||||||
],
|
],
|
||||||
|
@ -1279,9 +1273,7 @@
|
||||||
"issue": 2156
|
"issue": 2156
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"breakingChanges": [
|
"breakingChanges": ["Removed Show Expand Button option from settings"],
|
||||||
"Removed Show Expand Button option from settings"
|
|
||||||
],
|
|
||||||
"themeChanges": [
|
"themeChanges": [
|
||||||
"The variable '--zen-main-browser-background' will now contain the generated gradient",
|
"The variable '--zen-main-browser-background' will now contain the generated gradient",
|
||||||
"Added the 'unread' attribute for background tabs that haven't been accessed yet"
|
"Added the 'unread' attribute for background tabs that haven't been accessed yet"
|
||||||
|
@ -1384,9 +1376,7 @@
|
||||||
"description": "Fixed wrong aligment on glance action buttons"
|
"description": "Fixed wrong aligment on glance action buttons"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"features": [
|
"features": ["No new features, sorry"]
|
||||||
"No new features, sorry"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.0.1-a.17",
|
"version": "1.0.1-a.17",
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
"extra": "",
|
"extra": "",
|
||||||
"fixes": [],
|
"fixes": [],
|
||||||
"features": []
|
"features": []
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue