import { getLang } from "@/i18n/serverContext" import { texts } from "./Texts" import styles from "./notFound.module.css" export default function NotFound() { const lang = 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} .

) }