From 42849cd9f9aaedc723c064956fa8dd309fd08697 Mon Sep 17 00:00:00 2001 From: Vamsi Sai <39260099+vamsi4845@users.noreply.github.com> Date: Thu, 2 Oct 2025 02:15:16 +0530 Subject: [PATCH] feat: add streaming(loading) for smtp settings page navigation (#264) Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .../(dashboard)/dev-settings/smtp/loading.tsx | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx diff --git a/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx b/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx new file mode 100644 index 0000000..72e211c --- /dev/null +++ b/apps/web/src/app/(dashboard)/dev-settings/smtp/loading.tsx @@ -0,0 +1,40 @@ +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@usesend/ui/src/card"; + export default function Loading() { + return ( + + + SMTP + + Send emails using SMTP instead of the REST API. See documentation for + more information. + + + +
+
+ Host: +
+
+
+ +
+

+ For encrypted/TLS connections use{" "} + 2465,{" "} + 587 or{" "} + 2587 +

+
+
+ +
+
+
+ +
+
+
+ + + ); + } \ No newline at end of file