Merge version_2_1776673644015 into main #1

Merged
bender merged 2 commits from version_2_1776673644015 into main 2026-04-20 08:29:37 +00:00
3 changed files with 30 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ import { Award, Shield, Zap } from "lucide-react";
export default function App() {
return (
<>
<div className="main-container">
<div id="nav" data-section="nav">
<NavbarCentered
logo="AGENCY"
@@ -276,6 +276,6 @@ export default function App() {
]}
/>
</div>
</>
</div>
);
}

View File

@@ -134,7 +134,9 @@ html {
body {
margin: 0;
background-color: var(--background);
background: linear-gradient(-45deg, var(--background), var(--background-accent), var(--background));
background-size: 400% 400%;
animation: animated-gradient 15s ease infinite;
color: var(--foreground);
font-family: '${inter.variable} ${openSans.variable}', sans-serif;
position: relative;

View File

@@ -128,6 +128,18 @@
}
}
@keyframes animated-gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Animation classes */
.animate-pulsate {
@@ -169,3 +181,16 @@
.animate-progress {
animation: progress linear forwards;
}
/* Button hover animations */
button,
.primary-button,
.secondary-button {
transition: all 0.2s ease-in-out;
}
button:hover,
.primary-button:hover,
.secondary-button:hover {
transform: scale(1.03) translateY(-2px);
}