'use client';
import React from 'react';
import { motion } from 'framer-motion';
import { Layout, Typography, Button, Space } from 'antd';
import Header from '@/components/layout/Header';
import Footer from '@/components/layout/Footer';
import EnhancedHero from '@/components/sections/EnhancedHero';
import WHOOSHShowcase from '@/components/sections/WHOOSHShowcase';
import BZZZShowcase from '@/components/sections/BZZZShowcase';
import SLURPShowcase from '@/components/sections/SLURPShowcase';
import COOEEShowcase from '@/components/sections/COOEEShowcase';
import IntegrationShowcase from '@/components/sections/IntegrationShowcase';
import SectionNavigation from '@/components/ui/SectionNavigation';
import ProgressIndicator from '@/components/ui/ProgressIndicator';
const { Content } = Layout;
const { Title, Paragraph } = Typography;
// Animation variants for Framer Motion
const fadeInUp = {
hidden: { opacity: 0, y: 30 },
visible: {
opacity: 1,
y: 0,
transition: { duration: 0.6, ease: 'easeOut' }
}
};
export default function HomePage() {
return (
<>
{/* Enhanced Hero Section */}
{/* Component Showcase Sections */}
{/* CTA Section */}
Ready to Transform Your AI Workflow?
Join the next generation of AI orchestration with CHORUS Services.
{/* Progress Indicator */}
{/* Floating Section Navigation */}
>
);
}