import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar"; import { getServices } from "@/services/services"; import { getLocale } from "next-intl/server"; export default async function BusinessTours() { const lang = await getLocale(); const { data } = await getServices(lang); return (
); }