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. +

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