import React, { useState, useEffect, useMemo } from "react"; import { createRoot } from "react-dom/client"; // --- Types --- type Category = "Web" | "Mobile" | "Plugin" | "Marketing" | "UI"; interface Project { id: string; category: Category; industry: string; tech: string[]; title: string; shortDescription: string; fullDescription: string; features: string[]; image: string; detailImage?: string; liveUrl: string; } // --- Expanded Industry Categories --- const INDUSTRIES = [ "All", "Music", "Event", "Agency", "Architecture", "Automotive", "Beauty", "Business", "Construction", "Corporate", "Creative", "Dentist", "Digital Agency", "Education", "Fashion", "Fitness", "Health", "Hotel", "Jewelry", "Landing Page", "Law", "Life Coach", "Logistics", "Marketing", "Medical", "Nature", "Non Profit", "Photography", "Portfolio", "Real Estate", "Restaurant", "SaaS", "Security", "Spa", "Sport", "Startup", "Technology", "Travel", "Wedding", "Yoga" ]; const PROJECTS: Project[] = [ // --- MASHUPMINATI THEME (Music/Event Focus) --- { id: "mashup-minati-music", category: "Web", industry: "Music", tech: ["Next.js", "GSAP", "Tailwind"], title: "MashupMinati", shortDescription: "Now Booking 2026 Season. India's premier high-energy event aggregator.", fullDescription: "WE DON'T JUST PLAY. WE CREATE. From stadium concerts to royal weddings, we handle the Sound, the Lights, the Stage, and the Soul. We are not just a DJ company. We are a full-stack event powerhouse providing the Full Spectrum of entertainment.", features: [ "Entertainment & Artists Curating", "Event Planning (End-to-End)", "Production & Tech (Line Array Systems)", "Decor & Design (Ambient Lighting)", "Artist Management & Celebrity DJs" ], // Represents the high-impact hero image with the DJ deck image: "https://images.unsplash.com/photo-1598387181032-a3103a2db5b3?auto=format&fit=crop&q=80&w=1200", // Represents the full vertical scroll screenshot provided detailImage: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&q=80&w=1600", liveUrl: "#" }, { id: "mashup-minati-event", category: "Web", industry: "Event", tech: ["Next.js", "GSAP", "Three.js"], title: "MashupMinati Pro", shortDescription: "The Big Fat Indian Wedding & Corporate Galas specialist.", fullDescription: "Scale doesn't scare us. Intimacy doesn't bore us. We specialize in award nights, product launches, and high-energy social gatherings. The ultimate blueprint for event management platforms.", features: [ "The Big Fat Indian Wedding Saga", "Corporate Gala Specialists", "Social & Private Parties", "Visual Proof Portfolio Grid" ], image: "https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&q=80&w=1200", detailImage: "https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80&w=1600", liveUrl: "#" }, // Other Standard Templates { id: "w1", category: "Web", industry: "Agency", tech: ["Elementor", "WP"], title: "Brix Digital", shortDescription: "Modern digital agency template with bold typography.", fullDescription: "Brix is a high-performance template for modern agencies. It features interactive case studies and a unique project grid.", features: ["Case Study Layouts", "Custom Mega Menu", "Performance Optimized"], image: "https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&q=80&w=1200", liveUrl: "#" }, { id: "w2", category: "Web", industry: "Architecture", tech: ["React", "Tailwind"], title: "Lira Studio", shortDescription: "Minimalist architecture and interior design template.", fullDescription: "Lira focuses on whitespace and high-quality photography, perfect for high-end architectural firms.", features: ["Project Masonry", "Dark/Light Mode", "Portfolio Filtering"], image: "https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&q=80&w=1200", liveUrl: "#" } ]; // --- Components --- const AuraBackground = () => (
); const Navbar = ({ onHome }: { onHome: () => void }) => ( ); const BentoGrid = ({ onNavigate }: { onNavigate: (cat: Category) => void }) => (
onNavigate("Web")}>
01 / FEATURED

Web Systems

High-energy themes for Music, Events, and Creative Agencies.

BROWSE MASHUPMINATI & MORE →
Web
onNavigate("Mobile")}>
02 / INTERFACE

App Demos

Native app experiences for event booking and management.

Apps
onNavigate("Plugin")}>

Plugins

Tools
onNavigate("Marketing")}>

Marketing

Marketing
onNavigate("UI")}>
05 / DESIGN

UI Systems

Design
); const GalleryView = ({ category, onSelect, onBack }: { category: Category, onSelect: (p: Project) => void, onBack: () => void }) => { const [activeIndustry, setActiveIndustry] = useState("All"); const filtered = useMemo(() => { return PROJECTS.filter(p => p.category === category && (activeIndustry === "All" || p.industry === activeIndustry)); }, [category, activeIndustry]); return (

{activeIndustry === 'All' ? category : activeIndustry} LIBRARY

{filtered.length} curated designs

{filtered.map((p, i) => (
onSelect(p)}>
{p.title}
{p.industry}

{p.title}

{p.shortDescription}

))}
); }; const ProjectDetailView = ({ project, onBack }: { project: Project, onBack: () => void }) => { useEffect(() => { window.scrollTo(0,0); }, []); return (
{project.industry.toUpperCase()} // DESIGN BLUEPRINT

{project.title}

{project.fullDescription}

VIEW LIVE DEMO
{project.title}

CORE SPECIFICATIONS

    {project.features.map(f =>
  • {f}
  • )}

ENGINEERING STACK

{project.tech.map(t => {t})} Native Performance Cloud Scale
LONG-FORM PREVIEW
{/* Displays the exclusive full-page screenshot provided by the user */} Full Page Preview
BLUEPRINT PROTECTED BY BYS HUB
); }; function App() { const [view, setView] = useState<{ type: 'home' | 'gallery' | 'detail', category?: Category, project?: Project }>({ type: 'home' }); const navigateToHome = () => setView({ type: 'home' }); const navigateToGallery = (cat: Category) => setView({ type: 'gallery', category: cat }); const navigateToDetail = (proj: Project) => setView({ type: 'detail', project: proj }); return (
{view.type === 'home' && ( <>
INNOVATION HUB

Premium Web Architectures.

Explore elite-level design blueprints for high-energy industries.

)} {view.type === 'gallery' && view.category && ( )} {view.type === 'detail' && view.project && ( navigateToGallery(view.project!.category)} /> )}
BYS / HUB

The definitive library for modern web design excellence.

©{new Date().getFullYear()} BYS MARKETING SOLUTIONS
); } const rootElement = document.getElementById("root")!; const root = createRoot(rootElement); root.render();