mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 15:06:37 +00:00
23 lines
619 B
TypeScript
23 lines
619 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Globe } from "lucide-react";
|
|
import { useTranslations } from "next-intl";
|
|
import DismissableBanner from "./DismissableBanner";
|
|
|
|
export const ProxyResourcesBanner = () => {
|
|
const t = useTranslations();
|
|
|
|
return (
|
|
<DismissableBanner
|
|
storageKey="proxy-resources-banner-dismissed"
|
|
version={1}
|
|
title={t("proxyResourcesBannerTitle")}
|
|
titleIcon={<Globe className="w-5 h-5 text-primary" />}
|
|
description={t("proxyResourcesBannerDescription")}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default ProxyResourcesBanner;
|