turkmen-expo/app/(root)/(mainMenu)/services/business-tours/page.tsx

21 lines
512 B
TypeScript

import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
import { getServices } from "@/services/services";
export default async function BusinessTours() {
const { data } = await getServices();
return (
<LayoutWithSidebar
title={data ? data[7].title : ""}
third={data ? data[7].title : ""}
>
<div
className="select-inner"
dangerouslySetInnerHTML={{
__html: data ? data[7].content : "",
}}
/>
</LayoutWithSidebar>
);
}