import React from "react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { Badge } from "../components/ui/badge"; import { ArrowRight, Calendar, ExternalLink, Download, Newspaper, Mic, Video, Image } from "lucide-react"; export const PressMedia = () => { const pressReleases = [ { date: "December 15, 2023", title: "WDI Announces $10M Series A Funding for Global Expansion", excerpt: "Web Development Institute secures Series A funding to accelerate international growth and enhance AI capabilities.", category: "Funding", link: "#" }, { date: "November 8, 2023", title: "WDI Wins 'Best Digital Transformation Company' at Global Tech Awards", excerpt: "Recognition for outstanding contributions to digital innovation across multiple industries.", category: "Awards", link: "#" }, { date: "October 22, 2023", title: "WDI Launches New AI-Powered Development Platform", excerpt: "Revolutionary platform combines machine learning with traditional development to accelerate project delivery.", category: "Product Launch", link: "#" }, { date: "September 5, 2023", title: "WDI Opens New Development Center in Singapore", excerpt: "Strategic expansion into Southeast Asian market with focus on fintech and e-commerce solutions.", category: "Expansion", link: "#" } ]; const mediaKits = [ { title: "Company Overview", description: "Complete company background, mission, and key statistics", type: "PDF", size: "2.1 MB", icon: Newspaper }, { title: "Leadership Bios", description: "Executive team biographies and high-resolution photos", type: "ZIP", size: "15.3 MB", icon: Image }, { title: "Logo Package", description: "Brand logos in various formats and color variations", type: "ZIP", size: "8.7 MB", icon: Image }, { title: "Product Screenshots", description: "High-resolution screenshots of our digital solutions", type: "ZIP", size: "25.4 MB", icon: Image } ]; const mediaAppearances = [ { date: "December 10, 2023", title: "The Future of AI in Business Development", outlet: "TechCrunch Podcast", type: "Podcast", guest: "Sarah Chen, CEO", icon: Mic }, { date: "November 25, 2023", title: "Digital Transformation Trends 2024", outlet: "Forbes", type: "Article", guest: "Michael Rodriguez, CTO", icon: Newspaper }, { date: "November 15, 2023", title: "Building Global Remote Teams", outlet: "Web Summit 2023", type: "Speaking", guest: "Emily Watson, COO", icon: Video }, { date: "October 30, 2023", title: "The Rise of No-Code Development", outlet: "Wired Magazine", type: "Interview", guest: "David Kumar, Head of AI", icon: Newspaper } ]; return (
{/* Hero Section */}
Press & Media

Latest News & Media Coverage

Stay updated with WDI's latest announcements, media appearances, and industry insights. Access our media kit and press resources.

{/* Latest Press Releases */}

Latest Press Releases

Stay informed about WDI's major announcements and company updates

{pressReleases.map((release, index) => (
{release.category}
{release.date}

{release.title}

{release.excerpt}

))}
{/* Media Kit */}

Media Kit & Resources

Everything you need for media coverage, including logos, bios, and company information

{mediaKits.map((kit, index) => (

{kit.title}

{kit.description}

{kit.type} • {kit.size}
))}
{/* Media Appearances */}

Recent Media Appearances

Our leadership team's insights featured across top industry publications and events

{mediaAppearances.map((appearance, index) => (
{appearance.type} {appearance.date}

{appearance.title}

{appearance.outlet}

{appearance.guest}

))}
{/* Contact Information */}

Media Inquiries

For press inquiries, interview requests, or additional information, please contact our media team

Press Contact

Sarah Martinez

Head of Communications

press@wdi.com

+1 (555) 123-4567

Partnership Inquiries

James Park

VP of Business Development

partnerships@wdi.com

+1 (555) 123-4568

{/* CTA Section */}

Stay Connected

Follow our journey and get the latest updates on our innovations and industry insights

); };