Skip to content

Commit a270984

Browse files
author
pcarapic15
committed
Ini Tradeoffs component
1 parent 1b94f26 commit a270984

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/components/sd-gym/SdGymContent.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import NewsSliderSection from "../community-stats/NewsSliderSection";
55
import BannerSection from "../community-stats/BannerSection";
66
import SdGymLeaderboard from "./SdGymLeaderboard";
77
import AboutSdGym from "./AboutSdGym";
8+
import Tradeoffs from "./Tradeoffs";
89

910
export 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>

src/components/sd-gym/Tradeoffs.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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;

0 commit comments

Comments
 (0)