File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import NewsSliderSection from "../community-stats/NewsSliderSection";
55import BannerSection from "../community-stats/BannerSection" ;
66import SdGymLeaderboard from "./SdGymLeaderboard" ;
77import AboutSdGym from "./AboutSdGym" ;
8+ import Tradeoffs from "./Tradeoffs" ;
89
910export default function SdGymContent ( ) {
1011 const [ rawData , setRawData ] = useState ( [ ] ) ;
@@ -93,6 +94,7 @@ export default function SdGymContent() {
9394 < SdGymHero />
9495 < SdGymLeaderboard data = { data } tags = { dateTags } setTags = { setDateTags } />
9596 < AboutSdGym />
97+ < Tradeoffs />
9698 < NewsSliderSection />
9799 < BannerSection />
98100 </ div >
Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+
3+ const Tradeoffs = ( ) => {
4+ return (
5+ < div className = "flex justify-center bg-white" >
6+ < div className = "container w-full flex flex-col py-12 md:py-16 lg:py-24 px-4 md:px-5 lg:px-0" >
7+ < h1 className = "heading-600-lg text-[36px] md:text-5xl text-center" >
8+ The < span className = "text-blue-600" > Privacy-Quality</ span > Tradeoffs
9+ </ h1 >
10+ </ div >
11+ </ div >
12+ ) ;
13+ } ;
14+
15+ export default Tradeoffs ;
You can’t perform that action at this time.
0 commit comments