/* eslint-disable formatjs/no-literal-string-in-jsx */ import { getLang } from "@/i18n/serverContext" import { texts } from "./Texts" import styles from "./notFound.module.css" export default async function NotFound() { const lang = await getLang() const infoTexts = texts[lang] return (

{infoTexts.title}

{infoTexts.goToStartPage.question} {infoTexts.goToStartPage.linkText} ?

{infoTexts.goToDestinations.question} {infoTexts.goToDestinations.linkText} {infoTexts.goToOffers.question} {infoTexts.goToOffers.linkText} .

) }