import LanguageSwitcher from "@/components/Current/Header/LanguageSwitcher" import { getIconByIconName } from "@/components/Icons/get-icon-by-icon-name" import Image from "@/components/Image" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import { detailsData } from "../mockedData" import styles from "./details.module.css" import { IconName } from "@/types/components/icon" function socialIcon(iconName: string): JSX.Element | null { const SocialIcon = getIconByIconName(iconName as IconName) return SocialIcon ? : {iconName} } export default async function FooterDetails() { return (
Scandic Hotels logo
{detailsData.copyrightCompany}{" "} {detailsData.copyrightInfo}
) }