change
This commit is contained in:
13
src/app/[locale]/services/page.tsx
Normal file
13
src/app/[locale]/services/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import { getServices } from "@/shared/api/servicesSvc";
|
||||
import ServicesSection from "@/features/services/ui/services-section/services-section";
|
||||
|
||||
const Page = async () => {
|
||||
const { data: services } = await getServices();
|
||||
return (
|
||||
<div className={"section-wrapper"}>
|
||||
<ServicesSection services={services} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
export default Page;
|
||||
Reference in New Issue
Block a user