Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-04-08 09:00:16 +00:00

View File

@@ -9,7 +9,6 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Star, Shield, Zap, CheckCircle } from 'lucide-react';
export default function Page() {
const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Contact', id: '/contact' }];
@@ -23,22 +22,22 @@ export default function Page() {
<HeroBillboard title="Transform Your Digital Presence" description="Modern, scalable, and beautifully designed web solutions for the next generation of brands." background={{ variant: 'animated-grid' }} />
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne names={['Company A', 'Company B', 'Company C']} title="Trusted by industry leaders" description="Joining forces with the best to build tomorrow." />
<SocialProofOne names={['Company A', 'Company B', 'Company C']} title="Trusted by industry leaders" description="Joining forces with the best to build tomorrow." textboxLayout="default" useInvertedBackground={false} />
</div>
<div id="features" data-section="features">
<FeatureCardMedia animationType="slide-up" title="Core Capabilities" description="Powerful features designed to scale your business." features={[{ id: '1', title: 'High Performance', description: 'Optimized for speed and SEO efficiency.', tag: 'Performance' }, { id: '2', title: 'Scalable Architecture', description: 'Built to grow alongside your user base.', tag: 'Scalability' }]} />
<FeatureCardMedia animationType="slide-up" title="Core Capabilities" description="Powerful features designed to scale your business." textboxLayout="default" useInvertedBackground={false} features={[{ id: '1', title: 'High Performance', description: 'Optimized for speed and SEO efficiency.', tag: 'Performance' }, { id: '2', title: 'Scalable Architecture', description: 'Built to grow alongside your user base.', tag: 'Scalability' }]} />
</div>
<div id="process" data-section="process">
<FeatureCardMedia animationType="slide-up" title="Our Process" description="How we turn ideas into reality." features={[{ id: 'p1', title: 'Strategic Planning', description: 'We align our goals with your vision.', tag: 'Phase 1' }, { id: 'p2', title: 'Agile Execution', description: 'Iterative development for maximum efficiency.', tag: 'Phase 2' }]} />
<FeatureCardMedia animationType="slide-up" title="Our Process" description="How we turn ideas into reality." textboxLayout="default" useInvertedBackground={false} features={[{ id: 'p1', title: 'Strategic Planning', description: 'We align our goals with your vision.', tag: 'Phase 1' }, { id: 'p2', title: 'Agile Execution', description: 'Iterative development for maximum efficiency.', tag: 'Phase 2' }]} />
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive title="Client Success Stories" description="See what our partners say about working with us." textboxLayout="default" testimonials={[{ id: 't1', name: 'John Doe', date: 'Jan 2025', title: 'Founder, Startup Inc', quote: 'An incredible team that delivered beyond expectations.', tag: 'Client', avatarSrc: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200&h=200&auto=format&fit=crop' }]} />
<TestimonialCardFive title="Client Success Stories" description="See what our partners say about working with us." textboxLayout="default" useInvertedBackground={false} testimonials={[{ id: 't1', name: 'John Doe', date: 'Jan 2025', title: 'Founder, Startup Inc', quote: 'An incredible team that delivered beyond expectations.', tag: 'Client', avatarSrc: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200&h=200&auto=format&fit=crop' }]} />
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive title="Pricing" description="Simple, transparent pricing plans." animationType="slide-up" textboxLayout="default" plans={[{ id: 'basic', tag: 'Start', price: '$49', period: '/mo', description: 'Essential tools for small teams.', button: { text: 'Get Started' }, featuresTitle: 'Includes:', features: ['Feature 1', 'Feature 2'] }, { id: 'pro', tag: 'Growth', price: '$99', period: '/mo', description: 'Advanced features for scaling.', button: { text: 'Go Pro' }, featuresTitle: 'Includes:', features: ['All Basic features', 'Priority Support'] }]} />
<PricingCardFive title="Pricing" description="Simple, transparent pricing plans." animationType="slide-up" textboxLayout="default" useInvertedBackground={false} plans={[{ id: 'basic', tag: 'Start', price: '$49', period: '/mo', description: 'Essential tools for small teams.', button: { text: 'Get Started' }, featuresTitle: 'Includes:', features: ['Feature 1', 'Feature 2'] }, { id: 'pro', tag: 'Growth', price: '$99', period: '/mo', description: 'Advanced features for scaling.', button: { text: 'Go Pro' }, featuresTitle: 'Includes:', features: ['All Basic features', 'Priority Support'] }]} />
</div>
<div id="contact" data-section="contact">
<ContactCenter tag="Connect" title="Get in touch" description="Have a project in mind? We'd love to hear from you." background={{ variant: 'plain' }} />
<ContactCenter tag="Connect" title="Get in touch" description="Have a project in mind? We'd love to hear from you." background={{ variant: 'plain' }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterBase logoText="Webild" columns={[{ title: 'Navigation', items: [{ label: 'Home', href: '/' }, { label: 'About', href: '/about' }] }]} />