import React, { useState } from 'react';
import { Menu, X, ArrowRight, CheckCircle, TrendingUp, Users, Zap, Shield } from 'lucide-react';
export default function AstroProWebsite() {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
const services = [
{
name: "Astra Mini",
target: "PGK15-29K Sales in 4-5 Weeks",
description: "Scalable Solutions to Reach PGK15-29K Sales in 4-5 Weeks. This plan focuses on establishing a strong digital footprint and optimizing core operations for rapid initial growth.",
features: [
"Professional online presence setup",
"Basic e-commerce features",
"Essential digital marketing tools",
"Quick launch optimization",
"Speed and user-friendliness focus"
],
color: "from-blue-500 to-cyan-500"
},
{
name: "Astra Lite",
target: "PGK30-99K Sales in 6-10 Weeks",
description: "Scalable Solutions to Reach PGK30-99K Sales in 6-10 Weeks. Building on Astra Mini, this plan integrates more advanced digital tools to enhance customer engagement and streamline operations.",
features: [
"Hybrid business model integration",
"Online and offline activity blending",
"Basic CRM for personalized communication",
"Optimized invoicing and inventory processes",
"Expanded geographical reach"
],
color: "from-purple-500 to-pink-500"
},
{
name: "Astra Premium",
target: "PGK99-400K Sales in 3-5 Months",
description: "Scalable Solutions to Reach PGK99-400K Sales in 3-5 Months. Astra Premium introduces extensive customization and SEO optimization to drive higher visibility and diversified revenue streams.",
features: [
"Extensive digital customization",
"Advanced SEO optimization",
"Diversified revenue stream development",
"Built-in SEO best practices",
"New market segment exploration",
"Digital product offering development"
],
color: "from-orange-500 to-red-500"
},
{
name: "Astra Pro",
target: "PGK400K+ (1.5M) Sales in One Year",
description: "The comprehensive Astra Pro plan focuses on long-term growth and resilience through the 'Create, Innovate, Sustain' methodology with cutting-edge technologies.",
features: [
"Data-driven insights and automation",
"Advanced sales, marketing & operations integration",
"Sustainable business model optimization",
"Customer retention improvement",
"Multiple revenue stream diversification",
"Long-term resilience building"
],
color: "from-emerald-500 to-teal-500",
featured: true
}
];
const hybridBenefits = [
{
icon: Shield,
title: "Enhanced Resilience",
description: "Multiple channels compensate for each other during market fluctuations"
},
{
icon: TrendingUp,
title: "Revenue Diversity",
description: "Multiple income streams reduce dependency on any single source"
},
{
icon: Users,
title: "Broader Market Reach",
description: "Access different customer segments through varied channels"
},
{
icon: Zap,
title: "Market Adaptability",
description: "Quickly pivot in response to market shifts and opportunities"
}
];
const scrollToSection = (id) => {
document.getElementById(id)?.scrollIntoView({ behavior: 'smooth' });
setMobileMenuOpen(false);
};
return (
{/* Navigation */}
{/* Hero Section */}
Transform Your Business with
Astro Pro Consulting
Create, Innovate, Sustain - Scalable solutions powered by the Business in a Box Hybrid Model for long-term growth and resilience
Get Started
{/* Services Section */}
Our Service Tiers
Scalable solutions tailored to your business growth stage
{services.map((service, index) => (
{service.featured && (
MOST COMPREHENSIVE
)}
{service.name}
{service.target}
{service.description}
{service.features.map((feature, idx) => (
{feature}
))}
Learn More
))}
{/* Hybrid Model Section */}
Business in a Box Hybrid Model
A comprehensive, ready-to-deploy business solution that combines flexibility, scalability, and diverse revenue streams
{hybridBenefits.map((benefit, index) => (
{benefit.title}
{benefit.description}
))}
Key Components
Modular Offerings
Customizable product/service modules tailored to your market needs
Infrastructure
Built-in technical infrastructure with cloud platforms and automation
Integrated Channels
Pre-established marketing and sales channels across multiple platforms
Support Systems
Comprehensive CRM and operational support for seamless management
{/* CTA Section */}
Ready to Transform Your Business?
Let's discuss how Astro Pro can help you achieve sustainable growth and market resilience
Contact Us Now
{/* Footer */}
);
}