From 2eba7f775802f9cad671d75e733ccc83fd740bc6 Mon Sep 17 00:00:00 2001 From: Ricardo Castro Date: Sun, 14 Jul 2024 18:36:17 -0400 Subject: [PATCH] feat: add gradient --- .../src/app/confirm/layout.tsx | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/apps/gifting-concierge/src/app/confirm/layout.tsx b/apps/gifting-concierge/src/app/confirm/layout.tsx index bbc9da9..07c770a 100644 --- a/apps/gifting-concierge/src/app/confirm/layout.tsx +++ b/apps/gifting-concierge/src/app/confirm/layout.tsx @@ -28,16 +28,17 @@ export const metadata: Metadata = { export default function Layout({ children }: { children: React.ReactNode }) { return ( -
-
-
- {children} + <> +
+
+
+ {children} - - - -
-
-
+ +
+
+
+ + ); }