Skip to content

Commit 87a9657

Browse files
0tuedonEmmanuel-Develops
authored andcommitted
feat(banner): boss banner removal
1 parent de31942 commit 87a9657

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/components/home/HeroSection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const HeroSection = ({ getStarted }: { getStarted: () => void }) => {
2424
className="hero-section "
2525
flexDir={"column"}
2626
width={"100%"}
27-
pt={{ lg: 14 }}
2827
id="hero-section"
2928
position={"relative"}
3029
>

src/layout/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { useRouter } from "next/router";
88
import Navbar from "@/components/navbar/Navbar";
99
import config from "@/config/config.json";
1010
import Script from "next/script";
11-
import BossBanner from "@/components/banner/BossBanner";
1211

1312
const Layout = ({ children }: { children: React.ReactNode }) => {
1413
const [isReviewSite, setIsReviewSite] = useState(false);
@@ -55,7 +54,6 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
5554
></meta>
5655
</Head>
5756
{!isRoot && <Navbar />}
58-
{(isRoot || isHomeRouter) && <BossBanner top={isRoot ? 0 : 12} />}
5957
<GlobalContainer
6058
flexGrow={1}
6159
py={!isRoot ? 4 : 0}

0 commit comments

Comments
 (0)