/* eslint-disable @next/next/no-img-element */ import React from "react"; import cls from "./beDelivery.module.scss"; import { useSettings } from "contexts/settings/settings.context"; import { IPage } from "interfaces"; import FallbackImage from "components/fallbackImage/fallbackImage"; type Props = { data?: IPage; }; export default function BeDelivery({ data }: Props) { const { settings } = useSettings(); return (

{data?.translation?.title}

); }