Initial commit: NovinTrades website monorepo.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-07-24 17:16:53 +03:30
co-authored by Cursor
commit 722a520e68
147 changed files with 15748 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
type RichHtmlProps = {
html: string;
className?: string;
};
export default function RichHtml({ html, className }: RichHtmlProps) {
if (!html.trim()) return null;
return (
<div
className={className}
dangerouslySetInnerHTML={{ __html: html }}
/>
);
}