import Image from "next/image"; import { CreatePlanForm } from "@/components/create-plan-form"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { getDictionary } from "@/get-dictionary"; export default async function Home({ params, }: { params: Promise<{ lang: string }>; }) { const { lang } = await params; const dict = await getDictionary(lang as any); return (
Cat Sitting Planner Logo

{dict.home.title}

{dict.home.description}

{dict.home.createPlan} {dict.home.createPlanDesc}
); }