/* eslint-disable formatjs/no-literal-string-in-jsx */ import Image from "@scandic-hotels/design-system/Image" import { getCurrentFooter } from "@/lib/trpc/memoizedRequests" import { getLang } from "@/i18n/serverContext" import Navigation from "./Navigation" import styles from "./footer.module.css" export default async function Footer() { const lang = await getLang() const footerData = await getCurrentFooter(lang) if (!footerData) { return null } return ( ) }