From 9fc73f06f3d1abb3285fd85edb5d280f85f7a491 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Tue, 23 Jul 2024 00:05:32 +0200 Subject: [PATCH] chore: Update profile color in features component --- src/components/features.tsx | 2 +- src/components/header.tsx | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/components/features.tsx b/src/components/features.tsx index bdd1359..ff67ccc 100644 --- a/src/components/features.tsx +++ b/src/components/features.tsx @@ -67,7 +67,7 @@ export default function Features() { setProfile2Enter(currentProfile === 1); setProfile3Enter(currentProfile === 2); setCurrentProfileColor(profileColors[currentProfile]); - }, 3500); + }, 2500); }, []); return (
diff --git a/src/components/header.tsx b/src/components/header.tsx index cda9ad1..66a8e06 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -8,11 +8,20 @@ import ShinyButton from "./ui/shiny-button"; import GridPattern from "./ui/grid-pattern"; import BlurIn from "./ui/blur-in"; import { FadeText } from "./ui/fade-text"; +import styled, { keyframes } from "styled-components"; + +const HeaderElement = styled.div` + background: light-dark(white, rgba(0, 0, 0, 0.5)); +`; export default function Header() { return ( <> -
+
+ + +
+ - Introducing Zen Beta + Introducing Zen Alpha @@ -69,12 +78,7 @@ export default function Header() {
- -
- - + ) }