|
@@ -1,5 +1,5 @@
|
|
|
"use server";
|
|
|
-import { getServicesApi, getSocialsApi } from "@/api/customservice";
|
|
|
+import { getServicesApi } from "@/api/customservice";
|
|
|
import { Link } from "@/i18n/routing";
|
|
|
import { getTranslations } from "next-intl/server";
|
|
|
import { FC } from "react";
|
|
@@ -20,7 +20,8 @@ const terms = [
|
|
|
];
|
|
|
const ActionWidget: FC = async () => {
|
|
|
const services = await getServicesApi();
|
|
|
- const socials = await getSocialsApi();
|
|
|
+ // const socials = await getSocialsApi();
|
|
|
+ const socials: any[] = [];
|
|
|
const t = await getTranslations("HomePage");
|
|
|
return (
|
|
|
<div>
|