import { ArrowLeft } from "react-feather" import { overview } from "@/constants/routes/webviews" import Link from "@/components/TempDesignSystem/Link" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import { webviewSearchParams } from "@/utils/webviews" import styles from "./linkToOverview.module.css" export default async function LinkToOverview() { const intl = await getIntl() const searchParams = webviewSearchParams() const overviewHref = `${overview[getLang()]}?${searchParams.toString()}` return ( {intl.formatMessage({ id: "Go back to overview" })} ) }