mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 17:30:01 +02:00
Worked on the new rebranding!
Co-authored-by: taroj1205 <taroj1205@users.noreply.github.com>
This commit is contained in:
parent
38712913e7
commit
f45c7b10e4
12 changed files with 1822 additions and 96 deletions
|
@ -1,3 +1,18 @@
|
|||
---
|
||||
// Circles.astro
|
||||
const sizes = [216, 396, 576, 756]
|
||||
const borderWidths = [20, 30, 40, 50]
|
||||
---
|
||||
<div id="circles" class="absolute inset-0 overflow-hidden pointer-events-none -z-10">
|
||||
<div class="absolute left-1/2 top-0 opacity-10 translate-y-[-90%] lg:opacity-100 -translate-x-1/2 lg:-translate-y-1/2">
|
||||
{[...Array(4)].map((_, i) => (
|
||||
<div class="absolute rounded-full border-coral -translate-x-1/2 -translate-y-1/2"
|
||||
style={{
|
||||
width: `${sizes[i]}px`,
|
||||
height: `${sizes[i]}px`,
|
||||
borderWidth: `${borderWidths[i]}px`,
|
||||
}}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue