/** * 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 BlogSection from '../components/BlogSection' import ModernSaasFooter from '../components/ModernSaasFooter' import BackToTop from '../components/BackToTop' 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 */} {/* Blog Section */} {/* Modern SaaS Footer */} {/* Back to Top Button - Migrated from Techwind */}
) } export default NextreamLanding