Skip to content

Commit a378cda

Browse files
authored
Remove videos (GraphQLGuide#80)
1 parent ed325a3 commit a378cda

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

src/components/landing/Package.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,13 @@ const Package = ({
6767
<hr />
6868
<li>
6969
<div className={classNames('Package-feature-list', { full })}>
70-
{pro ? (
71-
<Fragment>
72-
Videos:<Sup>2</Sup>
73-
</Fragment>
74-
) : (
75-
<Fragment>More videos:</Fragment>
70+
{full && (
71+
<Fragment>Videos:</Fragment>
7672
)}
7773
</div>
7874
{videos.map((video, i) => (
7975
<div className="Package-extra-item" key={i}>
8076
{video}
81-
{full && i === 0 ? <Sup>2</Sup> : null}
8277
</div>
8378
))}
8479
</li>

src/components/landing/Pricing.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ const Pricing = () => (
1919
'Apollo Federation',
2020
'Server Analytics',
2121
]}
22-
videos={[
23-
'Introduction to the codebases',
24-
'Apollo Devtools',
25-
'Apollo Studio',
26-
]}
2722
/>
2823
<Package
2924
full
@@ -40,7 +35,6 @@ const Pricing = () => (
4035
'Preventing DoS Attacks',
4136
]}
4237
videos={[
43-
'Code run-throughs of Chapters 6–11',
4438
<span>
4539
Interview with{' '}
4640
<a
@@ -95,8 +89,6 @@ const Pricing = () => (
9589
to date for at least 4 years, but we hope to continue for as long as
9690
GraphQL is the best data-fetching system out there. (Which is probably a
9791
long time—REST has been around for {REST_LIFESPAN} years!)
98-
<br />
99-
<sup>2</sup> Coming soon.
10092
</div>
10193
</div>
10294

src/components/landing/Stats.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Stats = () => (
2727
</div>
2828
<div className="Stat">
2929
<FontAwesomeIcon icon={faVideo} />
30-
<h3 className="Stat-number">11</h3>
30+
<h3 className="Stat-number">2</h3>
3131
<div className="Stat-caption">Videos</div>
3232
</div>
3333
</div>

0 commit comments

Comments
 (0)