2025-05-16 15:54:17 +02:00
|
|
|
import { Text } from "@react-email/components";
|
2024-11-17 16:31:34 +01:00
|
|
|
import * as React from "react";
|
|
|
|
|
import EmailLayout from "./EmailLayout";
|
2025-05-16 15:54:17 +02:00
|
|
|
import { Button } from "@react-email/button";
|
2024-11-17 16:31:34 +01:00
|
|
|
|
|
|
|
|
export const TestEmailSettings = () => {
|
|
|
|
|
return (
|
2025-05-16 15:54:17 +02:00
|
|
|
<EmailLayout preview="Email Setup">
|
|
|
|
|
<Text className="text-base font-light leading-8 text-green-800 ">Hi, your email settings are setup !</Text>
|
|
|
|
|
<Text className="text-base font-light leading-8 text-green-800 ">Best regard,</Text>{" "}
|
|
|
|
|
<Text className="text-base font-light leading-8 text-green-800 ">Portabase</Text>
|
2024-11-17 16:31:34 +01:00
|
|
|
</EmailLayout>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default TestEmailSettings;
|