From 073465d07e9eb169fd2d6a916b3d8612256a932e Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:04:03 +0000 Subject: [PATCH] Update layouts/auth-layout.tsx --- layouts/auth-layout.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 layouts/auth-layout.tsx diff --git a/layouts/auth-layout.tsx b/layouts/auth-layout.tsx new file mode 100644 index 0000000..929771c --- /dev/null +++ b/layouts/auth-layout.tsx @@ -0,0 +1,37 @@ +import { cn } from "@/lib/utils"; + +import { HorizontalGradient } from "@/components/horizontal-gradient"; +import { FeaturedTestimonials } from "@/components/featured-testimonials"; + +export function AuthLayout({ children }: { children: React.ReactNode }) { + return ( + <> +
+ {children} +
+
+ +

+ [App Name] is used by thousands of users +

+

+ Join thousands of users who trust [App Name] for their needs. +

+
+ + + + +
+
+ + ); +}