Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/(main)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { Footer } from "@/components/layout/footer";
export default function HomePage() {
return (
<div className="min-h-screen bg-background">
<Header />
<main>
<Hero />
<About />
Expand Down
211 changes: 211 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,214 @@
.animate-accordion-up {
animation: accordion-up 0.2s ease-out;
}

/* Premium animations and effects */
@layer utilities {
.animate-delay-100 {
animation-delay: 0.1s;
}
.animate-delay-200 {
animation-delay: 0.2s;
}
.animate-delay-300 {
animation-delay: 0.3s;
}
.animate-delay-500 {
animation-delay: 0.5s;
}
.animate-delay-700 {
animation-delay: 0.7s;
}
.animate-delay-1000 {
animation-delay: 1s;
}

/* Glass morphism effect */
.glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass {
background: rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.gradient-text {
@apply bg-gradient-to-r from-blue-600 via-purple-600 to-indigo-600 bg-clip-text text-transparent;
}

.dark .gradient-text {
@apply bg-gradient-to-r from-blue-400 via-purple-400 to-indigo-400 bg-clip-text text-transparent;
}

/* Shimmer effect */
.shimmer {
position: relative;
overflow: hidden;
}

.shimmer::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
animation: shimmer 2.5s infinite;
}

.dark .shimmer::before {
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.1),
transparent
);
}

/* Floating shapes */
.floating-shape {
position: absolute;
pointer-events: none;
z-index: -1;
}

.floating-shape-1 {
animation: float 8s ease-in-out infinite;
}

.floating-shape-2 {
animation: float 6s ease-in-out infinite reverse;
animation-delay: -2s;
}

.floating-shape-3 {
animation: float 10s ease-in-out infinite;
animation-delay: -4s;
}

/* Glow effects */
.glow-blue {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.glow-purple {
box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.glow-pink {
box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

/* Hover effects */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark .hover-lift:hover {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll reveal animations */
.scroll-reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
opacity: 1;
transform: translateY(0);
}

/* Gradient borders */
.gradient-border {
position: relative;
background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
padding: 2px;
border-radius: 12px;
}

.gradient-border::before {
content: '';
position: absolute;
inset: 2px;
background: hsl(var(--background));
border-radius: 10px;
z-index: -1;
}
}

/* Premium button effects */
.btn-premium {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}

.btn-premium::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
transition: left 0.5s;
}

.btn-premium:hover::before {
left: 100%;
}

/* Particle animation */
.particles {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}

.particle {
position: absolute;
background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
border-radius: 50%;
animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
0% {
transform: translateY(100vh) rotate(0deg);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100vh) rotate(360deg);
opacity: 0;
}
}
Loading