'use client' import { ArrowRight, CheckCircle, Download, MessageCircle, Shield, Smartphone, Users, ChevronLeft, ChevronRight, Quote } from 'lucide-react' import Image from "next/image" import Link from "next/link" import { useEffect, useState, useRef, useCallback } from "react" import { Button } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" import { BackgroundBeams } from "@/components/ui/background-beams" import { BackgroundGradient } from "@/components/ui/background-gradient" import { SparklesCore } from "@/components/ui/sparkles" import { TextGenerateEffect } from "@/components/ui/text-generate-effect" import { TracingBeam } from "@/components/ui/tracing-beam" import { FloatingNavbar } from "@/components/ui/floating-navbar" import { HoverBorderGradient } from "@/components/ui/hover-border-gradient" import { AnimatedTooltip } from "@/components/ui/animated-tooltip" const navItems = [ { name: "Features", link: "#features", }, { name: "Benefits", link: "#benefits", }, { name: "About", link: "#about", }, { name: "Download", link: "#download", }, ] const testimonials = [ { id: 1, name: "Dr. Andi", role: "Lead Dentist", image: "/image/60467e1ae6f97acb8964f5aa617c7ecb.png", quote: "DentaKoas has revolutionized how our dental students find patients. The matching algorithm has improved clinical practice efficiency by over 50%." }, { id: 2, name: "Dr. Ria", role: "Dental Specialist", image: "/image/50382765fd5648c7876d91cc37b273.png", quote: "The platform has been instrumental in helping students meet their clinical requirements on time. It's a win-win for both students and patients." }, { id: 3, name: "Dr. Citra", role: "Orthodontist", image: "/image/b00e1ebc65fc7f2c53c9a9a955a49be5.png", quote: "As an educator, I've seen firsthand how DentaKoas bridges the gap between students who need clinical experience and patients who need affordable care." }, { id: 4, name: "Budi Santoso", role: "Patient", image: "https://avatars.githubusercontent.com/u/245?v=4", quote: "I needed dental work but couldn't afford regular rates. Through DentaKoas, I received excellent care from supervised students at a price I could manage." }, { id: 5, name: "Lina Wijaya", role: "Dental Student", image: "https://avatars.githubusercontent.com/u/389?v=4", quote: "Finding specific cases for my requirements was always a challenge. DentaKoas helped me find exactly what I needed to complete my clinical practice." }, { id: 6, name: "Rudi Hartono", role: "Patient", image: "https://avatars.githubusercontent.com/u/123?v=4", quote: "I was skeptical at first, but the care I received was top-notch. The students were well-supervised, and I felt safe throughout the process." }, ] export default function Home() { const [mounted, setMounted] = useState(false) useEffect(() => { setMounted(true) }, []) if (!mounted) { return null } return (
{/* Navigation */} {/* Hero Section - Updated to match reference image */}
{/* New announcement badge */}
New! Connect dental students with patients seamlessly
{/* Main headline - Simplified and centered */}

Dental matchmaking. Centralize treatment scheduling.

Record and organize dental treatments automatically. Focus on what matters - connecting students with patients who need care.

{/* Call-to-action button */}
{/* App preview floating gently */}
Denta koas App Preview
{/* Floating elements around the app preview */}
{/* Stats Section */}

57.6%

Indonesians with dental issues

10.2%

Receive professional treatment

82.8%

Dental caries prevalence

{/* Features Section */}

Key Features

Denta koas provides innovative features powered by blockchain technology

Patient Matching

Smart matching algorithm connects students with suitable patients

Secure Messaging

End-to-end encrypted communication between students and patients

Data Security

Blockchain-based security for all personal and medical data

{/* Benefits Section */}
For Dental Students

Accelerate Your Clinical Practice

Denta koas helps you find patients that match your requirements

  • Find patients matching your requirements
  • Manage treatment schedules efficiently
  • Organized case documentation
  • Complete your clinical practice on time
For Patients

Affordable Dental Care

Access quality dental care at more affordable rates

  • Dental care at more affordable rates
  • Treated by students under experienced dentist supervision
  • Flexible treatment schedules
  • Contribute to dental education
{/* About Section */}

About Denta koas

Connecting dental students at Jember University with patients who need affordable dental care

Denta koas was born from the need to address two main problems: the difficulty dental students face in finding patients who match their requirements, and limited access to affordable dental care services.

According to data from the Indonesian Ministry of Health in 2018, around 57.6% of Indonesians experience dental and oral problems. Unfortunately, only 10.2% of them receive treatment from medical professionals.

With Denta koas, we hope to bridge the needs of dental students and the community, so that both parties can benefit. Students can complete their clinical practice on time, while the community gains access to affordable dental care.

{/* Testimonial Grid - 3 columns layout */}

What People Are Saying

{/* Grid Layout */}
{testimonials.map((testimonial) => (

"{testimonial.quote}"

{testimonial.name}

{testimonial.name}

{testimonial.role}

))}
{/* Download Section */}

Download Denta koas Now

Available for Android devices

Compatible with Android 6.0 (Marshmallow) and newer versions

{/* Footer */}
) }