File size: 23,146 Bytes
25f22bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
import React, { useState, useEffect, lazy, Suspense } from 'react';
import { Link } from 'react-router-dom';
// Lazy load components for better performance
const FeatureCard = lazy(() => import('../components/FeatureCard'));
const TestimonialCard = lazy(() => import('../components/TestimonialCard'));
const Home = () => {
const [isVisible, setIsVisible] = useState(false);
const [isLoading, setIsLoading] = useState(true);
const [mounted, setMounted] = useState(false);
useEffect(() => {
// Set mounted state to ensure component is mounted
setMounted(true);
// Simulate loading state with skeleton screen
const timer = setTimeout(() => {
setIsLoading(false);
setIsVisible(true);
}, 800);
return () => clearTimeout(timer);
}, []);
// Enhanced features with more compelling descriptions
const features = [
{
title: "Smart Content Scheduling",
description: "Plan and schedule your LinkedIn posts with AI-powered optimal timing for maximum engagement and reach.",
icon: "📅",
isNew: true
},
{
title: "Multi-Account Management",
description: "Seamlessly manage multiple LinkedIn accounts from a unified dashboard with advanced team collaboration features.",
icon: "👥",
isPopular: true
},
{
title: "Advanced Analytics & Insights",
description: "Gain deep insights into your performance with comprehensive analytics and AI-driven recommendations for growth.",
icon: "📊",
isPremium: true
},
{
title: "AI Content Generation",
description: "Create compelling, platform-optimized content with our advanced AI writing assistant and content ideation tools.",
icon: "🤖",
isNew: true
}
];
// Enhanced testimonials with more specific results
const testimonials = [
{
name: "Alex Johnson",
role: "Marketing Director",
company: "TechCorp Solutions",
content: "Lin has completely transformed how we manage our LinkedIn presence. The smart scheduling alone saves us 15+ hours weekly, and our engagement has increased by 200%.",
avatar: "AJ",
rating: 5
},
{
name: "Sarah Williams",
role: "Content Creator",
company: "Digital Growth Agency",
content: "The analytics dashboard provides insights we never had before. Our client engagement has increased by 150% since implementing Lin's recommendations.",
avatar: "SW",
rating: 5
},
{
name: "Michael Chen",
role: "Startup Founder",
company: "InnovateLab",
content: "Managing multiple accounts was a nightmare until we found Lin. The team collaboration features have been a game-changer for our growing startup.",
avatar: "MC",
rating: 5
}
];
// Enhanced loading skeleton with modern design
if (isLoading) {
return (
<div className="min-h-screen bg-gradient-to-br from-secondary-50 via-accent-50 to-secondary-100">
{/* Hero Skeleton */}
<section className="py-8 md:py-16 lg:py-24 relative overflow-hidden">
<div className="absolute inset-0 bg-gradient-to-r from-primary-50/20 to-accent-50/20"></div>
<div className="container mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<div className="animate-pulse">
<div className="bg-primary-200 h-12 sm:h-16 w-4/5 mx-auto rounded-lg mb-4 sm:mb-6"></div>
<div className="bg-secondary-200 h-6 sm:h-8 w-3/4 mx-auto rounded-lg mb-6 sm:mb-10"></div>
<div className="flex flex-col sm:flex-row justify-center gap-3 sm:gap-4">
<div className="bg-primary-200 h-12 sm:h-14 w-32 sm:w-48 rounded-xl"></div>
<div className="bg-secondary-200 h-12 sm:h-14 w-28 sm:w-44 rounded-xl"></div>
</div>
</div>
</div>
</section>
{/* Features Skeleton */}
<section className="py-12 sm:py-16 lg:py-20 bg-white/90 backdrop-blur-sm relative">
<div className="container mx-auto px-4 sm:px-6 lg:px-8 relative">
<div className="text-center mb-12 sm:mb-16 lg:mb-20">
<div className="animate-pulse">
<div className="bg-secondary-200 h-10 sm:h-12 w-2/3 mx-auto rounded-lg mb-4 sm:mb-6"></div>
<div className="bg-secondary-200 h-5 sm:h-6 w-1/2 mx-auto rounded-lg"></div>
</div>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 sm:gap-6 lg:gap-8">
{[1, 2, 3, 4].map((i) => (
<div key={i} className="animate-pulse">
<div className="bg-secondary-200 h-14 sm:h-16 w-14 sm:w-16 rounded-xl mx-auto mb-3 sm:mb-4"></div>
<div className="bg-secondary-200 h-5 sm:h-6 w-3/4 mx-auto rounded mb-2 sm:mb-2"></div>
<div className="bg-secondary-200 h-3 sm:h-4 w-full rounded"></div>
</div>
))}
</div>
</div>
</section>
</div>
);
}
return (
<div className="min-h-screen bg-gradient-to-br from-secondary-50 via-accent-50 to-secondary-100">
{/* Hero Section */}
<section className="relative overflow-hidden">
{/* Background with enhanced gradient and pattern */}
<div className="absolute inset-0 bg-gradient-to-br from-primary-50/30 via-accent-50/20 to-secondary-50/30"></div>
<div className="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiM5MTAwMjkiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMiIvPjwvZz48L2c+PC9zdmc+')] opacity-30"></div>
{/* Hero content with enhanced typography and spacing */}
<div className="relative z-10 py-12 md:py-16 lg:py-20 xl:py-24 2xl:py-32">
<div className="container mx-auto px-4 sm:px-6 lg:px-8 text-center max-w-4xl sm:max-w-5xl lg:max-w-6xl">
{/* Badge */}
<div className={`inline-flex items-center px-3 sm:px-4 py-2 bg-primary-100 text-primary-800 rounded-full text-xs sm:text-sm font-medium mb-6 sm:mb-8 transition-all duration-700 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-4'
}`} style={{ animationDelay: '0.1s' }}>
<span className="w-2 h-2 bg-primary-600 rounded-full mr-2 animate-pulse"></span>
Professional LinkedIn Management Platform
</div>
{/* Main heading with enhanced typography */}
<h1 className={`text-3xl sm:text-4xl md:text-5xl lg:text-6xl xl:text-7xl 2xl:text-8xl font-bold text-gray-900 mb-6 sm:mb-8 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.2s' }}>
Elevate Your <span className="text-primary-600">LinkedIn</span> Presence
</h1>
{/* Subheading with enhanced styling */}
<p className={`text-lg sm:text-xl md:text-2xl lg:text-3xl text-secondary-700 mb-8 sm:mb-12 max-w-3xl sm:max-w-4xl mx-auto leading-relaxed transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.3s' }}>
Transform your LinkedIn strategy with AI-powered scheduling, advanced analytics, and comprehensive account management—all in one unified platform.
</p>
{/* Enhanced CTA buttons */}
<div className={`flex flex-col sm:flex-row justify-center gap-4 sm:gap-6 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.4s' }}>
<Link
to="/register"
className="group relative overflow-hidden bg-primary-600 hover:bg-primary-700 text-white font-bold py-3 px-6 sm:py-4 sm:px-8 lg:py-5 lg:px-10 rounded-2xl transition-all duration-300 transform hover:-translate-y-2 shadow-lg hover:shadow-2xl focus:outline-none focus:ring-4 focus:ring-primary-300 focus:ring-offset-4 active:scale-95 touch-manipulation"
aria-label="Get started with Lin for free"
>
<span className="relative z-10 flex items-center justify-center">
Get Started Free
<svg className="ml-2 w-4 h-4 sm:w-5 sm:h-5 group-hover:translate-x-1 transition-transform duration-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 7l5 5m0 0l-5 5m5-5H6" />
</svg>
</span>
<div className="absolute inset-0 bg-gradient-to-r from-primary-700 to-primary-800 opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
</Link>
<Link
to="/login"
className="group relative bg-white hover:bg-secondary-50 text-secondary-900 font-bold py-3 px-6 sm:py-4 sm:px-8 lg:py-5 lg:px-10 rounded-2xl transition-all duration-300 border-2 border-secondary-200 shadow-md hover:shadow-lg hover:border-secondary-300 focus:outline-none focus:ring-4 focus:ring-secondary-300 focus:ring-offset-4 active:scale-95 touch-manipulation"
aria-label="Sign in to your Lin account"
>
<span className="relative z-10 flex items-center justify-center">
Sign In
<svg className="ml-2 w-4 h-4 sm:w-5 sm:h-5 group-hover:translate-x-1 transition-transform duration-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1" />
</svg>
</span>
</Link>
</div>
{/* Trust indicators */}
<div className={`mt-12 sm:mt-16 flex flex-wrap justify-center items-center gap-4 sm:gap-6 lg:gap-8 text-secondary-600 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.5s' }}>
<div className="flex items-center gap-2">
<svg className="w-5 h-5 sm:w-6 sm:h-6 text-primary-600" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M6.267 3.455a3.066 3.066 0 001.745-.723 3.066 3.066 0 013.976 0 3.066 3.066 0 001.745.723 3.066 3.066 0 012.812 2.812c.051.643.304 1.254.723 1.745a3.066 3.066 0 010 3.976 3.066 3.066 0 00-.723 1.745 3.066 3.066 0 01-2.812 2.812 3.066 3.066 0 00-1.745.723 3.066 3.066 0 01-3.976 0 3.066 3.066 0 00-1.745-.723 3.066 3.066 0 01-2.812-2.812 3.066 3.066 0 00-.723-1.745 3.066 3.066 0 010-3.976 3.066 3.066 0 00.723-1.745 3.066 3.066 0 012.812-2.812zm7.44 5.252a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
</svg>
<span className="text-sm sm:text-base font-medium">10,000+ Active Users</span>
</div>
<div className="flex items-center gap-2">
<svg className="w-5 h-5 sm:w-6 sm:h-6 text-primary-600" fill="currentColor" viewBox="0 0 20 20">
<path fillRule="evenodd" d="M3 17a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm3.293-7.707a1 1 0 011.414 0L9 10.586V3a1 1 0 112 0v7.586l1.293-1.293a1 1 0 111.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clipRule="evenodd" />
</svg>
<span className="text-sm sm:text-base font-medium">50M+ Posts Managed</span>
</div>
<div className="flex items-center gap-2">
<svg className="w-5 h-5 sm:w-6 sm:h-6 text-primary-600" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<span className="text-sm sm:text-base font-medium">4.9/5 User Rating</span>
</div>
</div>
</div>
</div>
</section>
{/* Features Section */}
<section className="relative py-12 sm:py-16 lg:py-24 bg-white/80 backdrop-blur-sm">
{/* Background gradient */}
<div className="absolute inset-0 bg-gradient-to-b from-transparent via-white to-secondary-50/50"></div>
<div className="relative container mx-auto px-4 sm:px-6 lg:px-8">
{/* Section header */}
<div className="text-center mb-12 sm:mb-16 lg:mb-20">
<div className={`inline-flex items-center px-3 sm:px-4 py-2 bg-accent-100 text-accent-800 rounded-full text-xs sm:text-sm font-medium mb-4 sm:mb-6 transition-all duration-700 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-4'
}`} style={{ animationDelay: '0.1s' }}>
Powerful Features
</div>
<h2 className={`text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900 mb-4 sm:mb-6 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.2s' }}>
Everything You Need for <span className="text-primary-600">LinkedIn Success</span>
</h2>
<p className={`text-lg sm:text-xl text-secondary-600 max-w-2xl sm:max-w-3xl mx-auto transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.3s' }}>
Comprehensive tools designed to streamline your LinkedIn management and drive exceptional results.
</p>
</div>
{/* Features grid */}
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 sm:gap-6 lg:gap-8">
<Suspense fallback={<div className="col-span-full flex items-center justify-center py-8">Loading...</div>}>
{features.map((feature, index) => (
<FeatureCard
key={index}
icon={feature.icon}
title={feature.title}
description={feature.description}
delay={`${index * 150}ms`}
isVisible={isVisible}
isNew={feature.isNew}
isPopular={feature.isPopular}
isPremium={feature.isPremium}
/>
))}
</Suspense>
</div>
</div>
</section>
{/* Testimonials Section */}
<section className="relative py-12 sm:py-16 lg:py-24 bg-gradient-to-br from-secondary-50 via-accent-50 to-primary-50">
{/* Background pattern */}
<div className="absolute inset-0 bg-gradient-to-r from-primary-50/10 via-accent-50/10 to-secondary-50/10"></div>
<div className="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiM5MTAwMjkiIGZpbGwtb3BhY2l0eT0iMC4wMiI+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMAIgcj0iMyIvPjwvZz48L2c+PC9zdmc+')] opacity-30"></div>
<div className="relative container mx-auto px-4 sm:px-6 lg:px-8">
{/* Section header */}
<div className="text-center mb-12 sm:mb-16 lg:mb-20">
<div className={`inline-flex items-center px-3 sm:px-4 py-2 bg-primary-100 text-primary-800 rounded-full text-xs sm:text-sm font-medium mb-4 sm:mb-6 transition-all duration-700 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-4'
}`} style={{ animationDelay: '0.1s' }}>
Trusted by Professionals
</div>
<h2 className={`text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900 mb-4 sm:mb-6 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.2s' }}>
Real Results from <span className="text-primary-600">Real Users</span>
</h2>
<p className={`text-lg sm:text-xl text-secondary-600 max-w-2xl sm:max-w-3xl mx-auto transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.3s' }}>
Join thousands of marketers, creators, and businesses who have transformed their LinkedIn presence with Lin.
</p>
</div>
{/* Testimonials grid */}
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 sm:gap-6 lg:gap-8">
<Suspense fallback={<div className="col-span-full flex items-center justify-center py-8">Loading...</div>}>
{testimonials.map((testimonial, index) => (
<TestimonialCard
key={index}
avatar={testimonial.avatar}
name={testimonial.name}
role={testimonial.role}
company={testimonial.company}
content={testimonial.content}
rating={testimonial.rating}
delay={`${index * 150}ms`}
isVisible={isVisible}
/>
))}
</Suspense>
</div>
</div>
</section>
{/* Enhanced CTA Section */}
<section className="relative py-12 sm:py-16 lg:py-24 bg-gradient-to-r from-primary-600 via-primary-700 to-primary-800 overflow-hidden">
{/* Background effects */}
<div className="absolute inset-0 bg-gradient-to-br from-primary-700/50 via-primary-800/50 to-primary-900/50"></div>
<div className="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYwMDUiIGZpbGwtb3BhY2l0eT0iMC41Ij5DcmVhdGVkIEJveDwvZz48L2c+PC9zdmc+')] opacity-30"></div>
<div className="absolute top-0 left-0 w-full h-1 bg-gradient-to-r from-transparent via-white to-transparent opacity-20"></div>
<div className="relative container mx-auto px-4 sm:px-6 lg:px-8 text-center">
{/* Section content */}
<div className="max-w-4xl mx-auto">
<div className={`inline-flex items-center px-3 sm:px-4 py-2 bg-white/20 text-white rounded-full text-xs sm:text-sm font-medium mb-6 sm:mb-8 backdrop-blur-sm transition-all duration-700 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-4'
}`} style={{ animationDelay: '0.1s' }}>
Limited Time Offer
</div>
<h2 className={`text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-6 sm:mb-8 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.2s' }}>
Ready to Transform Your <span className="text-accent-200">LinkedIn Presence</span>?
</h2>
<p className={`text-lg sm:text-xl text-white/90 mb-8 sm:mb-12 max-w-2xl sm:max-w-3xl mx-auto leading-relaxed transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.3s' }}>
Join thousands of professionals who are already using Lin to grow their network, increase engagement, and achieve remarkable results on LinkedIn.
</p>
{/* Enhanced CTA button */}
<div className={`transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.4s' }}>
<Link
to="/register"
className="group relative inline-flex items-center justify-center overflow-hidden bg-white hover:bg-secondary-50 text-primary-700 font-bold py-4 px-8 sm:py-5 sm:px-10 lg:py-6 lg:px-12 rounded-3xl transition-all duration-300 transform hover:-translate-y-2 shadow-2xl hover:shadow-3xl focus:outline-none focus:ring-4 focus:ring-white/30 focus:ring-offset-4 focus:ring-offset-primary-600 active:scale-95 touch-manipulation"
aria-label="Start your free trial with Lin"
>
<span className="relative z-10 flex items-center justify-center text-base sm:text-lg lg:text-xl">
Start Your Free Trial
<svg className="ml-2 w-5 h-5 sm:w-6 sm:h-6 group-hover:translate-x-1 transition-transform duration-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 7l5 5m0 0l-5 5m5-5H6" />
</svg>
</span>
<div className="absolute inset-0 bg-gradient-to-r from-primary-600 to-primary-700 opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<div className="absolute inset-0 bg-white/20 blur-lg opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
</Link>
</div>
{/* Additional trust signals */}
<div className={`mt-8 sm:mt-12 grid grid-cols-1 sm:grid-cols-3 gap-4 sm:gap-8 text-white/80 transition-all duration-1000 ${
isVisible ? 'animate-slide-up opacity-100' : 'opacity-0 translate-y-8'
}`} style={{ animationDelay: '0.5s' }}>
<div className="text-center">
<div className="text-2xl sm:text-3xl font-bold text-white mb-1 sm:mb-2">14-Day</div>
<div className="text-xs sm:text-sm">Free Trial</div>
</div>
<div className="text-center">
<div className="text-2xl sm:text-3xl font-bold text-white mb-1 sm:mb-2">No Credit Card</div>
<div className="text-xs sm:text-sm">Required</div>
</div>
<div className="text-center">
<div className="text-2xl sm:text-3xl font-bold text-white mb-1 sm:mb-2">24/7</div>
<div className="text-xs sm:text-sm">Support</div>
</div>
</div>
</div>
</div>
</section>
</div>
);
};
export default Home; |