"use client"; import Image from "next/image"; // Static imports for assets to ensure they work in Electron build import logoImage from "../../../public/assets/LOGO_CAREIT.svg"; import circleImage from "../../../public/assets/LandingPage/lingkaranLandingPage.svg"; import doctorImage from "../../../public/assets/LandingPage/dokterLucu.svg"; import stethoscopeImage from "../../../public/assets/LandingPage/stetoskop.svg"; import syringeImage from "../../../public/assets/LandingPage/suntik.svg"; interface LandingPageProps { onStartNow?: () => void; } const LandingPage = ({ onStartNow }: LandingPageProps) => { return (
{/* Left Section - White Background */}
{/* Logo */}
CARE-IT Logo
{/* Main Heading */}

TARIF BPJS TEPAT
LAYANAN HEBAT

{/* Descriptive Text */}

Care It memudahkan dokter memverifikasi tarif tindakan agar sesuai standar BPJS, dengan fitur warning billing sign yang memberi peringatan otomatis saat tarif melebihi batas, sehingga rumah sakit tetap patuh, aman, dan bebas overbilling.

{/* Call-to-Action Button */}
{/* Right Section - White Background with Circle Decorative */}
{/* Circular Decorative Element - Background */}
Decorative Circle
{/* White Curve Overlay - Complex curved shape from right extending to left */}
{/* 3D Doctor Illustration - Aligned with logo top and text bottom */}
Doctor Illustration
{/* Floating Stethoscope Icon - Upper Left */}
Stethoscope
{/* Floating Syringe Icon - Lower Right */}
Syringe
{/* Mobile View - Show doctor illustration */}
{/* Circular Decorative Element - Background Mobile */}
Decorative Circle
{/* White Curve for Mobile */}
{/* Doctor Illustration - Mobile */}
Doctor Illustration
{/* Mobile Icons */}
Stethoscope
Syringe
); }; export default LandingPage;