import DiscountCalculator from "@/components/DiscountCalculator";
const Index = () => {
return (
);
};
export default Index;
Divergent
one connection, unlimited value
.logo-container {
position: relative;
display: inline-block;
padding: 20px;
background: #000; /* Matches your brand's dark theme */
}
.divergent-logo {
width: 200px;
filter: drop-shadow(0 0 0px rgba(168, 85, 247, 0));
animation: logo-entry 1.5s ease-out forwards, pulse-glow 3s infinite 1.5s;
}
/* Floating Pixel Elements */
.pixel {
position: absolute;
width: 8px;
height: 8px;
background-color: #a855f7; /* Your brand purple */
opacity: 0;
}
.p1 { top: 20%; left: 10%; animation: pixel-fly 0.8s ease-out forwards 0.2s; }
.p2 { top: 50%; left: 5%; animation: pixel-fly 0.8s ease-out forwards 0.4s; }
.p3 { bottom: 20%; left: 12%; animation: pixel-fly 0.8s ease-out forwards 0.6s; }
/* Animation Keyframes */
@keyframes logo-entry {
0% { transform: translateX(-20px); opacity: 0; filter: blur(5px); }
100% { transform: translateX(0); opacity: 1; filter: blur(0); }
}
@keyframes pulse-glow {
0%, 100% { filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.4)); }
50% { filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8)); }
}
@keyframes pixel-fly {
0% { transform: scale(0) translateX(-50px); opacity: 0; }
50% { opacity: 1; }
100% { transform: scale(1) translateX(0); opacity: 0.8; }
}