import LandingPageSection from "../components/LandingPage/LandingPageSection"; import { Stethoscope } from "lucide-react"; import { Metadata } from "next"; import { getOpenGraphMetadata } from "@/lib/utils"; import ToyPicker from "../components/LandingPage/ToyPicker"; import GetInTouchButton from "../components/GetInTouch"; import { Badge } from "@/components/ui/badge"; import { redirect } from "next/navigation"; export const metadata: Metadata = { title: "Pediatric Care", ...getOpenGraphMetadata("Pediatric Care"), }; const Sections = [ { title: "A friendly face in unfamiliar places", progress: "Making hospital visits feel less scary", description: "Our AI companion helps children feel more at ease during medical procedures by explaining things in a friendly, age-appropriate way they can understand.", imageSrc: "/growth.jpg", }, { title: "Speaking their language", progress: "Complex procedures made simple", description: "Through playful conversation and familiar superhero voices, we help children understand medical procedures in ways that make sense to them.", imageSrc: "/learning.jpg", isImageRight: true, }, { title: "Always there to listen", progress: "24/7 emotional support for little warriors", description: "Whether it's pre-procedure jitters or recovery time, our companion provides constant emotional support and encouragement when children need it most.", imageSrc: "/safety.jpg", }, { title: "Teamwork with healthcare heroes", progress: "Building trust between kids and medical staff", description: "We help create positive associations with health-play staff, making it easier for children to form trusting relationships with their medical team.", imageSrc: "/privacy.jpg", isImageRight: true, }, ]; export default async function Healthcare() { redirect("/"); return (
This product is currently in Beta testing and is not yet certified for clinical use.
); }