import Footer from "@/components/Footer"; import { ArrowLeft } from "lucide-react"; import type { ReactNode } from "react"; type LegalPageLayoutProps = { eyebrow: string; title: string; intro: string; updatedAt: string; children: ReactNode; }; export default function LegalPageLayout({ eyebrow, title, intro, updatedAt, children, }: LegalPageLayoutProps) { return (
Torna alla home
Clinica Veterinaria
Formiginese
{eyebrow}

{title}

{intro}

Ultimo aggiornamento

{updatedAt}

{children}
); }