import { texts } from "./Texts" import styles from "./notFound.module.css" import { LangParams } from "@/types/params" export default function NotFound({ lang }: LangParams) { 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} .

) }