blob: d27e16edb8810dd8c7fa28856672e9ca712dabcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export default function TecharoDisclaimer({ children }) {
return (
<>
<link
rel="stylesheet"
href="https://files.xeiaso.net/static/font/inter/inter.css"
/>
<div className="font-['Inter'] text-lg mx-auto mt-4 mb-2 rounded-lg bg-bg-2 p-4 dark:bg-bgDark-2 md:max-w-3xl font-extrabold xe-dont-newline">
{children}
</div>
</>
);
}
|