From 56802bada6ea46d46ba2ea5df4ffc66f8bdf7380 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:29:19 -0300 Subject: [PATCH] refactor: add custom banner and refactor pagelayout to include it (#3803) * Added custom banner * Refactored pageLayout to include custom banner --- .../src/components/pageLayout/index.tsx | 28 +++++++++++-------- .../components/custom-banner.tsx | 3 ++ 2 files changed, 19 insertions(+), 12 deletions(-) create mode 100644 src/frontend/src/customization/components/custom-banner.tsx diff --git a/src/frontend/src/components/pageLayout/index.tsx b/src/frontend/src/components/pageLayout/index.tsx index bf815e9ac..10be78bbd 100644 --- a/src/frontend/src/components/pageLayout/index.tsx +++ b/src/frontend/src/components/pageLayout/index.tsx @@ -1,3 +1,4 @@ +import { CustomBanner } from "@/customization/components/custom-banner"; import { Separator } from "../ui/separator"; export default function PageLayout({ @@ -14,19 +15,22 @@ export default function PageLayout({ betaIcon?: boolean; }) { return ( -
{description}
+{description}
+