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