'use client'; import { motion } from 'framer-motion'; import Image from 'next/image'; import { Info, BookOpen, Download, ShieldCheck, Activity, Zap, Layers, Settings, Cpu, AlertTriangle, Terminal, ChevronLeft, ChevronRight, Bluetooth, Gauge } from 'lucide-react'; import { useState, useRef } from 'react'; import styles from './S300.module.css'; export default function S300() { const [currentSlide, setCurrentSlide] = useState(0); const infoRef = useRef(null); const guidesRef = useRef(null); const downloadRef = useRef(null); const scrollToSection = (ref: React.RefObject) => { if (ref.current) { ref.current.scrollIntoView({ behavior: 'smooth' }); } }; const coreFeatures = [ { title: 'Live Engine Tuning', desc: 'Real-time calibration of fuel, ignition, and injector settings.', icon: }, { title: 'Advanced Bluetooth', desc: 'Wireless datalogging and telemetry via S300 Rev.3 architecture.', icon: }, { title: 'Flex Fuel & Boost', desc: 'Variable boost control, Flex Fuel support, and custom MAP sensor logic.', icon: }, { title: 'Engine Protection', desc: 'Failsafe logic for lean AFR, overboost, and overheat conditions.', icon: }, { title: 'Launch Control', desc: 'Full throttle shift capabilities and programmable anti-lag.', icon: }, { title: 'Nitrous / Methanol', desc: 'Auxiliary outputs for nitrous control and methanol injection systems.', icon: }, ]; const factoryModels = [ { name: '91-92 Honda Integra DA', codes: 'DA' }, { name: '93-95 Honda Integra DB', codes: 'DB' }, { name: '92-95 Honda Civic', codes: 'EG/EH/EJ' }, { name: '92-95 Honda CR-X DelSol', codes: 'EG1/EG2' }, ]; const replacementModels = [ { name: '96-01 Honda Civic', codes: 'EK/EJ' }, { name: '96-01 Honda Integra', codes: 'DC2/DC4' }, { name: '96-01 Honda Prelude 5', codes: 'BB5-BB8' }, { name: '95-01 Honda CR-V', codes: 'RD1' }, ]; const ecuSupport = [ { region: 'USDM ECU BOARDS', versions: '02D011F0-1500, 02D01720-1500, 02D01980-1500' }, { region: 'JDM ECU BOARDS', versions: '02D01550-1500, 02D01840-1501' }, { region: 'EDM ECU BOARDS', versions: '2PU6098-4460P1, 2PU6098-4508P1' }, ]; return (
{/* 1. HERO SECTION */}
S300 Hero Component
OBD1 ENGINE MANAGEMENT SYSTEM

S300
CORE

Expand your Honda OBD1 ECU capabilities. Professional grade engine management featuring Live Tuning, Flex Fuel support, and advanced Bluetooth telemetry options.

PLATFORM SUPPORT

OBD1 USDM/JDM/EDM

SOFTWARE PROTOCOL

S300 / OSTRICH 2

I/O EXPANSION

6 ANALOG INPUTS

{/* 2. CORE CAPABILITIES */}

CORE PERFORMANCE
ENGINEERING

{coreFeatures.map((feature, i) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
S300 Hardware
{/* 3. COMPATIBILITY */}

FACTORY NATIVE SUPPORT

{factoryModels.map((m, i) => (
{m.name} {m.codes}
))}
{ecuSupport.map((ecu, index) => (
{ecu.region} {ecu.versions}
))}

REPLACEMENT REQUIRED

{replacementModels.map((m, i) => (
{m.name} {m.codes}
))}

OEM ECUs in these models aren't directly compatible. Requires hardware replacement with a supported OBD1 board version.

{/* 4. TECH GUIDES (SLIDER) */}
TECHNICAL INTELLIGENCE

DOCUMENTATION SYSTEM

{[ { title: 'Hardware Install (USDM ECU)', desc: 'Step by Step installation Guide', icon: , img: '/engine_bay.png' }, { title: 'Hardware Install (EDM ECU)', desc: 'Step by Step installation Guide', icon: , img: '/engine_bay.png' }, { title: 'Hardware Install (JDM ECU)', desc: 'Step by Step installation Guide', icon: , img: '/engine_bay.png' }, { title: 'Bluetooth', desc: 'Connection Guide and Compatible Applications', icon: , img: '/hud_telemetry.png' }, { title: 'S300 / Ostrich 2 Mode Switch', desc: 'Use board with S300 Manager or 3rd-party software', icon: , img: '/precan_car.png' }, { title: 'Board LEDs Meaning', desc: 'Troubleshooting using DIAG LEDs', icon: , img: '/map_sensor.png' }, { title: 'ECU Pinout', desc: 'Detailed ECU Connectors Pinout', icon: , img: '/ecu_kpro.png' }, { title: 'Automatic Transmission Setup', desc: 'How to control an automatic transmission using S300 Manager', icon: , img: '/ecu_kpro.png' }, ].map((card, i) => (
{card.icon}
0{i+1}

{card.title}

{card.desc}

))}
{/* 5. DOWNLOADS */}

SOFTWARE HUB

Security & Instructions

False virus detections may occur. If you have trouble downloading, temporarily disable Antivirus and Windows Defender.

Archive Password
1234

* Extract with WinRAR or 7-Zip.

S300 MANAGER

Native tuning software environment.

PRIMARY GUI
DOWNLOAD

HTS 2.15

Ostrich 2 Protocol mapping software.

LEGACY COM
DOWNLOAD
); }