import React from 'react'; import { motion } from 'framer-motion'; import { Code, Users, Coffee, Zap } from 'lucide-react'; // Optimized constants to prevent object recreation on renders const HARDWARE_ACCELERATION_STYLE = { transform: 'translateZ(0)', willChange: 'transform, opacity' } as const; const clients = [ 'K&M Systems, Inc.', 'Arrow Plumbing & Drain Services', 'Play Or Draw', 'The Perlman Clinic' ]; const team = [ { name: 'Louis Sheid', role: 'Technical Lead', bio: 'Our founder and owner, a lifelong techie with full-stack experience in radio frequency, healthcare, and e-commerce.', hobby: 'Enjoys touching grass and making music.' }, { name: 'Alan Trapenard', role: 'Developer / Data Analyst', bio: 'UCSD alumni, Cognitive Science with Machine Learning specialization.', hobby: 'Enjoys video games and playing Giant Steps on alto saxophone.' }, { name: 'Christopher Dove', role: 'Developer', bio: 'Background in computer science, with experience in cybersecurity, web development, and game theory.', hobby: 'Enjoys high-stakes poker and shadow boxing.' }, { name: 'Alberto Casillas', role: 'Accounting', bio: 'Experience advising a local plumbing company, preparing for audits.', hobby: 'Enjoys skateboarding with his dog and reading.' }, { name: 'Jason Lashchuk', role: 'Developer', bio: 'Passionate about hardware-software intersections, with experience in RF, embedded systems, and web development.', hobby: 'Enjoys long walks on the beach.' }, { name: 'Leonardo Braga', role: 'Marketing Consultant', bio: 'Designs web presences and creates marketing strategies for tech startups, e-commerce brands, and B2B campaigns.', hobby: 'Loves to surf PB and play soccer.' }, { name: 'Lena Albatro', role: 'Client Relations', bio: 'Fluent in three languages, focuses on international policy compliance and philosophy.', hobby: 'Enjoys playing games on her phone.' } ]; const About = () => { return (
{/* Floating Daedastream logo */} Daedastream Logo - Custom Web Development and Software Solutions

About
Daedastream

We are a San Diego-based custom software development studio founded by a team of builders, coders, and creatives passionate about turning ideas into reality. Our name, inspired by the mythical craftsman Daedalus and the flow of innovation, reflects our commitment to crafting tailored, cutting-edge products.

We specialize in building custom software that solves real business problems, whether it's specialized systems to replace costly SAAS tools, a high-end website that elevates your brand, or a mobile app that brings your vision to life. From small businesses to large corporations, what we create fits your unique needs, saves time, and cuts costs.

Our expertise spans enterprise tools, web and mobile applications, AI-driven automation, and digital marketing services. What sets us apart is our flexibility to work with clients, budgets, and projects big and small. Our mission is to simplify complexity, delivering solutions that are intuitive, efficient, and engineered to scale. Let us be your technical partner to transform challenges into opportunities.

{/* Team Section */}

Our Team

{team.map((member, index) => (

{member.name}

{member.role}

{member.bio}

{member.hobby}

))}
); }; export default About;