"use client";
import { useState, useEffect } from "react";
import { ArrowRight, Star, Play, CheckCircle, Sparkles, Globe, Zap, Shield } from "lucide-react";
const TestimonialCardSix = ({ title, description, tag, textboxLayout, animationType, useInvertedBackground, members }: {
title: string;
description: string;
tag: string;
textboxLayout: string;
animationType: string;
useInvertedBackground: string;
members: Array<{
id: string;
name: string;
role: string;
imageSrc: string;
imageAlt: string;
}>;
}) => {
return (
{tag}
{title}
{description}
{members.map((member) => (
{member.name}
{member.role}
))}
);
};
const FeatureCard = ({ icon: Icon, title, description }: {
icon: any;
title: string;
description: string;
}) => {
return (
);
};
const StatCard = ({ number, label }: {
number: string;
label: string;
}) => {
return (
);
};
const PricingCard = ({ plan, price, period, features, popular }: {
plan: string;
price: string;
period: string;
features: string[];
popular?: boolean;
}) => {
return (
{popular && (
Most Popular
)}
{plan}
${price}
/{period}
{features.map((feature, index) => (
-
{feature}
))}
);
};
export default function Home() {
const [isVideoPlaying, setIsVideoPlaying] = useState(false);
useEffect(() => {
// Add any initialization logic here
}, []);
return (
{/* Hero Section */}
Build Amazing
Digital Experiences
Transform your ideas into stunning web applications with our cutting-edge development platform.
Fast, reliable, and built for the modern web.
{/* Hero Image/Video */}
{isVideoPlaying ? (
) : (

)}
{/* Floating elements */}
{/* Stats Section */}
{/* Features Section */}
Everything you need to succeed
Powerful features designed to streamline your workflow and boost productivity
{/* Testimonials Section */}
Trusted by industry leaders
See what our customers have to say about their experience
{/* Pricing Section */}
Simple, transparent pricing
Choose the plan that works best for your team
{/* CTA Section */}
Ready to get started?
Join thousands of teams already building amazing things
{/* Footer */}
);
}