/** * 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 (
{/* Modern SaaS Header */} {/* Hero Section - Estilo index-saas.html */} {/* Business Partner / Platform Logos */} {/* Features Section - Estilo index-saas.html */} {/* Testimonials Section */} {/* Pricing Section */} {/* Modern SaaS Footer */} {/* Scroll to Top Button */}
) } export default NextreamLanding