This commit is contained in:
Mauro Balades
2024-07-11 09:49:05 +02:00
3 changed files with 11 additions and 3 deletions

BIN
public/profiles.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -1,4 +1,5 @@
import Feature from "./feature";
import { Button } from "./ui/button";
import TextReveal from "./ui/text-reveal";
@@ -18,16 +19,23 @@ export default function Features() {
title="Sidebar"
description="Access websites with ease. The sidebar allows you to quickly access your favorite websites without disrupting your browsing experience."
color="#F5ED97">
<img src="/sidebar.png" alt="Split Views" className="w-80 h-80 absolute right-0 top-0" style={{
transform: "translate(5px, -5px)"
<img src="/sidebar.png" alt="Split Views" className="absolute left-1/2 top-1/2" style={{
transform: "translate(-50%, -50%)"
}} />
</Feature>
<Feature
title="Profiles"
description="Switch between profiles with ease. Create multiple profiles to keep your work and personal browsing separate."
color="#8CE7C0">
<>TODO</>
<img src="/profiles.png" alt="Profiles" className="absolute left0 w-full top-1/2" style={{
transform: "translateY(-50%)"
}} />
</Feature>
<div className="my-40 w-full flex items-center justify-center flex-col">
<h1 className="text-5xl text-center font-bold w-1/2">Want more?</h1>
<p className="text-muted-foreground text-center mt-3 w-1/2">Zen is packed with features that will change the way you browse the web. Download it today and experience a new way to browse the web.</p>
<Button onClick={() => window.location.href = "/download"} className="mt-8">Download Zen Browser</Button>
</div>
</div>
);
}