File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const BossBanner = ({ top }: { top: number }) => {
1414 < Banner
1515 headingText = "Start your career in bitcoin open source —"
1616 linkText = "APPLY TODAY"
17- linkTo = "https://learning.chaincode.com/#BOSS "
17+ linkTo = "https://bosschallenge.xyz "
1818 hasBoss
1919 />
2020 </ Box >
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ const HeroSection = ({ getStarted }: { getStarted: () => void }) => {
2424 className = "hero-section "
2525 flexDir = { "column" }
2626 width = { "100%" }
27+ pt = { { lg : 14 } }
2728 id = "hero-section"
2829 position = { "relative" }
2930 >
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { useRouter } from "next/router";
88import Navbar from "@/components/navbar/Navbar" ;
99import config from "@/config/config.json" ;
1010import Script from "next/script" ;
11+ import BossBanner from "@/components/banner/BossBanner" ;
1112
1213const Layout = ( { children } : { children : React . ReactNode } ) => {
1314 const [ isReviewSite , setIsReviewSite ] = useState ( false ) ;
@@ -54,6 +55,7 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
5455 > </ meta >
5556 </ Head >
5657 { ! isRoot && < Navbar /> }
58+ { ( isRoot || isHomeRouter ) && < BossBanner top = { isRoot ? 0 : 12 } /> }
5759 < GlobalContainer
5860 flexGrow = { 1 }
5961 py = { ! isRoot ? 4 : 0 }
You can’t perform that action at this time.
0 commit comments