import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar"; import { getAbout } from "@/services/about"; import { getLocale, getTranslations } from "next-intl/server"; export default async function AboutPage() { const lang = await getLocale(); const t = await getTranslations("about"); const data = await getAbout(lang); return (
); }