import AboutTopContent from "@/components/AboutTopContent/AboutTopContent";
import AboutMidContent from "@/components/AboutMidContent/AboutMidContent";
import CurveTop from "@/components/CurveTop/CurveTop";
import MidQuote from "@/components/MidQuote/MidQuote";
import OurValues from "@/components/OurValues/OurValues";
import { canonicalUrls } from "@/lib/canonical";
import type { Metadata } from "next";

export async function generateMetadata(): Promise<Metadata> {
  return {
    title: "About - La Tarte",
    description:
      "Welcome to La Tarte, where artistic delicacies are created with passion to make your moments magical. Our journey with you began in 2018, inspired by the rich culture of French bakeries.",
    alternates: {
      canonical: canonicalUrls.about(),
    },
    openGraph: {
      title: "About - La Tarte",
      description:
        "Welcome to La Tarte, where artistic delicacies are created with passion to make your moments magical. Our journey with you began in 2018, inspired by the rich culture of French bakeries.",
      url: canonicalUrls.about(),
    },
  };
}

// Enable ISR with 2 hours revalidation for about page
export const revalidate = 7200; // 2 hours in seconds

export default function About() {
  return (
    <>
      <CurveTop />
      <AboutTopContent />
      <AboutMidContent />
      <MidQuote />
      <OurValues />
    </>
  );
}
