import React from 'react'; import { motion } from 'framer-motion'; import { Terminal, Cpu, Network, Shield, ChevronRight, Quote, Code, Database, Zap } from 'lucide-react'; const FadeIn = ({ children, delay = 0, direction = 'up' }) => { const directions = { up: { y: 40, opacity: 0 }, down: { y: -40, opacity: 0 }, left: { x: 40, opacity: 0 }, right: { x: -40, opacity: 0 }, }; return ( {children} ); }; export default function BitBridgeWebsite() { const team = [ { name: "Karl Whitehurst", role: "CEO & Founder", bio: "Visionary leader bridging the gap between raw technological potential and high-impact B2B business strategies. With 15+ years in the trenches, Karl drives our mission forward.", image: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&q=80" }, { name: "Elena Rostova", role: "Lead Architect", bio: "The mastermind behind our scalable infrastructures. Elena designs resilient, future-proof systems that never sleep, ensuring peak performance for our enterprise clients.", image: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop&q=80" }, { name: "Marcus Thorne", role: "Head of Engineering", bio: "A full-stack veteran obsessed with clean architecture, microsecond performance, and deploying cutting-edge software solutions.", image: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop&q=80" }, { name: "Sarah Jenkins", role: "Principal IT Consultant", bio: "Strategic thinker who excels at dissecting complex enterprise bottlenecks and transforming them into streamlined digital workflows.", image: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=400&h=400&fit=crop&q=80" }, { name: "David Chen", role: "Cybersecurity Lead", bio: "Former ethical hacker turned enterprise defender. David ensures every line of code and server node at BitBridge is fortified against modern threats.", image: "https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?w=400&h=400&fit=crop&q=80" } ]; const testimonials = [ { quote: "BitBridge completely overhauled our legacy architecture. Their insight into scalable B2B systems saved us countless hours and millions in operational costs.", author: "James T.", company: "CEO, Nexus Logistics" }, { quote: "Working with Karl and the engineering team felt less like a vendor relationship and more like an extension of our own CTO office. Pure technical brilliance.", author: "Aisha R.", company: "Director of Tech, FinServe UK" }, { quote: "In an industry full of buzzwords, BitBridge delivers actual, measurable results. Their software solutions are robust, secure, and incredibly fast.", author: "Michael O.", company: "Operations Head, OmniCorp" } ]; return (
{/* Background Ambient Glows */}
{/* Navigation */} {/* Hero Section */}
UK-BASED B2B TECHNOLOGY PARTNER

Architecting the
Digital Frontier.

We are a premier IT consultancy and software provider engineering high-performance, scalable solutions for modern B2B enterprises. We don't just write code; we build the bridge to your operational future.

const system = new BitBridge();

system.initialize({

mode: 'enterprise',

security: 'maximum',

scalability: true

});

> System architecture optimized.

> Ready for deployment.

{/* Services / Insights Section */}

Core Capabilities

Insight-driven IT consultancy meets rigorous software engineering. We solve complex B2B challenges through elegant, robust technology.

{[ { icon: , title: "Strategic IT Consultancy", desc: "We analyze your enterprise architecture to identify bottlenecks, mitigate risks, and design a technology roadmap aligned with your business objectives." }, { icon: , title: "Custom Software Engineering", desc: "From bespoke internal tools to massive B2B SaaS platforms, we write clean, maintainable code that scales seamlessly with your user base." }, { icon: , title: "Infrastructure & Security", desc: "Zero-trust architectures and resilient cloud deployments. We ensure your data remains secure and your systems stay online, 24/7." } ].map((service, i) => (
{service.icon}

{service.title}

{service.desc}

))}
{/* Testimonials */}

Client Intelligence

{testimonials.map((test, i) => (

"{test.quote}"

{test.author}

{test.company}

))}
{/* Team Section */}

The Architects

A specialized unit of engineers, consultants, and strategists dedicated to pushing the boundaries of enterprise technology.

{team.map((member, i) => (
{member.name}

{member.name}

{member.role}

{member.bio}

))}
{/* Footer */}
); }