import { motion, useScroll, useTransform } from "motion/react"; import { Code2, Palette, Cpu, Zap, Shield, Sparkles, Clock, Star, CheckCircle2, ArrowRight, Twitter, Linkedin, Github, Mail } from "lucide-react"; export default function App() { const { scrollYProgress } = useScroll(); const heroOpacity = useTransform(scrollYProgress, [0, 0.3], [1, 0]); const heroScale = useTransform(scrollYProgress, [0, 0.3], [1, 0.95]); const scrollToContact = () => { document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); }; return (
{/* Hero Section */} {/* Animated Background */}
{/* Grid Pattern */}
{/* Logo/Brand */}
Modern Digital Agency
{/* Main Headline */} We Build Modern Digital Solutions That{" "} Grow Your Business {/* Supporting Text */} Expert web development, stunning UI/UX design, and custom software solutions. We transform your ideas into powerful digital experiences that drive results. {/* CTA Buttons */} {/* Floating Elements */}
{/* Scroll Indicator */}
{/* Stats Section */}
{[ { number: "25+", label: "Projects Completed" }, { number: "15+", label: "Happy Clients" }, { number: "3+", label: "Years Experience" } ].map((stat, index) => (
{/* Glow Effect */}
{stat.number}
{stat.label}
))}
{/* About Section */}
{/* Left: Text Content */}
Modern Agency Reliable Partner Sri Lanka Based

Building Digital Excellence Since{" "} 2023

Rashro Technology is a premium digital agency specializing in creating cutting-edge web applications and software solutions. We combine creativity with technical expertise to deliver products that exceed expectations.

Our team of skilled developers and designers are passionate about transforming your vision into reality. We don't just build websites – we craft experiences that engage users and drive business growth.

Quality First
Premium Standards
{/* Right: Visual Element */}
{/* Abstract shapes */}
{/* Floating cards */}
{/* Services Section */}

Our Services

Comprehensive digital solutions tailored to your business needs

{[ { icon: Code2, title: "Web Development", description: "Modern, scalable web applications built with cutting-edge technologies. Fast, secure, and optimized for performance.", color: "#00f0ff" }, { icon: Palette, title: "UI/UX Design", description: "Beautiful, intuitive interfaces that users love. We create designs that are both stunning and functional.", color: "#a855f7" }, { icon: Cpu, title: "Custom Software", description: "Tailored software solutions that solve your unique business challenges with precision and efficiency.", color: "#06b6d4" }, { icon: Zap, title: "Digital Systems", description: "Automated workflows and digital transformation services that streamline your operations and boost productivity.", color: "#8b5cf6" } ].map((service, index) => (
{/* Hover glow effect */}

{service.title}

{service.description}

))}
{/* Why Choose Us Section */}

Why Choose Us

We deliver excellence through innovation and dedication

{[ { icon: Clock, title: "Fast Delivery", description: "Quick turnaround without compromising quality" }, { icon: Code2, title: "Clean Code", description: "Maintainable, scalable, and well-documented" }, { icon: Sparkles, title: "Modern Design", description: "Contemporary aesthetics that stand out" }, { icon: Shield, title: "Reliable Support", description: "Ongoing assistance and maintenance" }, { icon: Zap, title: "Scalable Solutions", description: "Built to grow with your business" }, { icon: Star, title: "Quality Assurance", description: "Rigorous testing and optimization" } ].map((item, index) => (

{item.title}

{item.description}

))}
{/* Process Section */}

Our Process

A proven workflow that ensures successful project delivery

{[ { step: "01", title: "Requirement Gathering", description: "Understanding your needs and goals" }, { step: "02", title: "UI/UX Design", description: "Creating intuitive and beautiful interfaces" }, { step: "03", title: "Development", description: "Building with modern technologies" }, { step: "04", title: "Deployment", description: "Launching and ongoing support" } ].map((item, index) => ( {/* Connector Line */} {index < 3 && (
)}
{item.step}

{item.title}

{item.description}

))}
{/* Testimonials Section */}

Client Testimonials

What our clients say about working with us

{[ { name: "Sarah Johnson", role: "CEO, TechStart Inc", testimonial: "Rashro Technology transformed our vision into a stunning web application. Their attention to detail and technical expertise exceeded our expectations. Highly recommended!", rating: 5 }, { name: "Michael Chen", role: "Founder, Digital Ventures", testimonial: "Working with Rashro was a game-changer for our business. They delivered a scalable solution on time and provided excellent support throughout the process.", rating: 5 } ].map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.testimonial}"

{testimonial.name}
{testimonial.role}
))}
{/* CTA Section */}

Let's Build Something{" "} Amazing Together

Ready to transform your ideas into reality? Let's start a conversation about your next project and create something extraordinary.

{/* Footer */}
); }