First Commit

This commit is contained in:
2026-09-12 13:56:36 +01:00
commit 4d75af0418
426 changed files with 36452 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import type { PropsWithChildren } from "react";
type Props = PropsWithChildren & {};
export default function EmailRoot({ children }: Props) {
const divider = (
<hr
style={{
opacity: 0.4,
}}
/>
);
return (
<div>
<span
style={{
fontSize: "14px",
fontWeight: "600",
opacity: 0.5,
}}
>
Wireguard UI Mailer
</span>
{divider}
<div>{children}</div>
{divider}
</div>
);
}