AvanzaCast/packages/landing-page/src/pages/NextreamLanding.tsx

54 lines
1.5 KiB
TypeScript

/**
* AvanzaCast Landing Page - Modern SaaS Style
* Basado en Techwind Modern SaaS Template
* Enfocado en streaming multiplatforma y broadcasting profesional
*/
import React, { useEffect } from 'react'
import feather from 'feather-icons'
import ModernSaasHeader from '../components/ModernSaasHeader'
import StreamingHeroSection from '../components/StreamingHeroSection'
import StreamingFeatures from '../components/StreamingFeatures'
import PlatformLogos from '../components/PlatformLogos'
import TestimonialsSection from '../components/TestimonialsSection'
import PricingSection from '../components/PricingSection'
import ModernSaasFooter from '../components/ModernSaasFooter'
import ScrollToTop from '../components/ScrollToTop'
const NextreamLanding: React.FC = () => {
useEffect(() => {
// Inicializar Feather Icons
feather.replace()
}, [])
return (
<div className="min-h-screen font-nunito bg-white dark:bg-slate-900 transition-colors duration-500">
{/* Modern SaaS Header */}
<ModernSaasHeader />
{/* Hero Section - Estilo index-saas.html */}
<StreamingHeroSection />
{/* Business Partner / Platform Logos */}
<PlatformLogos />
{/* Features Section - Estilo index-saas.html */}
<StreamingFeatures />
{/* Testimonials Section */}
<TestimonialsSection />
{/* Pricing Section */}
<PricingSection />
{/* Modern SaaS Footer */}
<ModernSaasFooter />
{/* Scroll to Top Button */}
<ScrollToTop />
</div>
)
}
export default NextreamLanding