import React, { useState, useEffect } from 'react'; import { Mic, Smartphone, Video, ArrowRight, Menu, X, ChevronRight, Mail, Globe } from 'lucide-react'; export default function App() { const [isScrolled, setIsScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); // Handle scroll effect for navbar useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const scrollToSection = (id) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: 'smooth' }); setMobileMenuOpen(false); } }; return (
{/* Navigation */} {/* Hero Section */}
Building the future of digital experiences

Innovating at the
intersection of media & tech.

Mezsondra LTD is a forward-thinking digital holding company. We build intelligent applications, craft premium video productions, and power revolutionary platforms like Transcribe.Audio.

{/* Portfolio / Divisions Section */}

Our Divisions

A diverse ecosystem of digital products

From AI-driven transcription services to immersive video content, our portfolio is designed to push boundaries and deliver exceptional value.

{/* Transcribe.Audio Card */}

Transcribe.Audio

Our flagship AI-powered platform transforming audio and video into highly accurate text, subtitles, and actionable insights in seconds.

Visit Project
{/* App Development Card */}

App Deployments

Developing and scaling innovative web and mobile applications designed to solve modern problems with elegant, user-centric interfaces.

View Apps
{/* Video Production Card */}

Video Production

End-to-end media production studio creating compelling visual narratives, commercials, and high-quality digital content for diverse audiences.

Watch Reel
{/* About Section */}
Data
Video Editing
Team
10+
Active Projects

About Mezsondra

Bridging the gap between code and creativity.

Mezsondra LTD was founded on a simple principle: technology should empower creativity, and creativity should drive technological innovation. As a holding company, we incubate, launch, and scale digital products that matter.

Whether it's the advanced AI models powering Transcribe.Audio, our suite of consumer applications, or our high-end video production studio, we maintain an unwavering commitment to quality, performance, and user experience.

Global Reach
In-House Studio
{/* CTA / Contact Section */}

Ready to collaborate?

Whether you're interested in our products, need professional video services, or want to discuss a partnership, we're always open to new opportunities.

Contact Us Today
{/* Footer */}
); }