From 5ce903774243dcd6770a9fef28d99b6b0f19420d Mon Sep 17 00:00:00 2001 From: LinaLam Date: Tue, 21 Jan 2025 17:48:00 -0800 Subject: [PATCH 1/3] added banner --- bifrost/app/components/Layout.tsx | 2 ++ bifrost/app/page.tsx | 2 +- bifrost/components/home/Banner.tsx | 15 ++++++++------- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/bifrost/app/components/Layout.tsx b/bifrost/app/components/Layout.tsx index 11e4783dc..f65232439 100644 --- a/bifrost/app/components/Layout.tsx +++ b/bifrost/app/components/Layout.tsx @@ -1,5 +1,6 @@ import Footer from "@/components/layout/footer"; import NavBar from "@/components/layout/navbar"; +import Banner from "@/components/home/Banner"; export const Layout = async ({ children, @@ -16,6 +17,7 @@ export const Layout = async ({ return ( <> + {children} {!hideFooter &&