fix: remove helpful-links section (#35478)
Closes #35397 Co-authored-by: mrugesh mohapatra <me@raisedadead.com>
This commit is contained in:
committed by
mrugesh mohapatra
parent
3ece63f044
commit
1d2baeabdc
@ -11,3 +11,12 @@
|
||||
#certifcation-settings .project-title > a {
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.table>thead>tr>th,
|
||||
.table>tbody>tr>th,
|
||||
.table>tfoot>tr>th,
|
||||
.table>thead>tr>td,
|
||||
.table>tbody>tr>td,
|
||||
.table>tfoot>tr>td {
|
||||
border: none;
|
||||
}
|
||||
|
@ -1,21 +1,6 @@
|
||||
import React, { Fragment } from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Grid, Col, Row, Table } from '@freecodecamp/react-bootstrap';
|
||||
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
|
||||
import {
|
||||
faLinkedin,
|
||||
faGithub,
|
||||
faTwitter,
|
||||
faYoutube,
|
||||
faMedium,
|
||||
faFacebook
|
||||
} from '@fortawesome/free-brands-svg-icons';
|
||||
import {
|
||||
faLock,
|
||||
faBalanceScale,
|
||||
faUniversity,
|
||||
faBook
|
||||
} from '@fortawesome/free-solid-svg-icons';
|
||||
import { Grid, Col, Row } from '@freecodecamp/react-bootstrap';
|
||||
|
||||
import { Link, Spacer } from '../components/helpers';
|
||||
|
||||
@ -221,117 +206,6 @@ const AboutPage = () => {
|
||||
</Col>
|
||||
</Row>
|
||||
<Spacer size={2} />
|
||||
<Row>
|
||||
<Col
|
||||
className='helpful-links'
|
||||
md={6}
|
||||
mdOffset={3}
|
||||
sm={10}
|
||||
smOffset={1}
|
||||
xs={12}
|
||||
>
|
||||
<h2 className='text-center'>Helpful Links</h2>
|
||||
<hr />
|
||||
<Table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faYoutube} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://youtube.com/freecodecamp'>
|
||||
Our YouTube channel
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faGithub} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://github.com/freecodecamp/'>
|
||||
Our GitHub organization
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faLinkedin} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://www.linkedin.com/edu/school?id=166029'>
|
||||
Our LinkedIn university page
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faMedium} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://medium.freecodecamp.org'>
|
||||
Our Medium publication
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faTwitter} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://twitter.com/freecodecamp'>
|
||||
Our Twitter feed
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faFacebook} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='https://facebook.com/freecodecamp'>
|
||||
Our Facebook page
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faLock} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='/privacy-policy'>Our privacy policy</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faBalanceScale} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='/code-of-conduct'>Our code of conduct</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faUniversity} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='/academic-honesty'>
|
||||
Our academic honesty policy
|
||||
</Link>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className='text-center'>
|
||||
<FontAwesomeIcon icon={faBook} />
|
||||
</td>
|
||||
<td>
|
||||
<Link to='/terms-of-service'>Our terms of service</Link>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</Table>
|
||||
</Col>
|
||||
</Row>
|
||||
</Grid>
|
||||
</Fragment>
|
||||
);
|
||||
|
@ -1,14 +1,3 @@
|
||||
.questions > h4 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.table>thead>tr>th,
|
||||
.table>tbody>tr>th,
|
||||
.table>tfoot>tr>th,
|
||||
.table>thead>tr>td,
|
||||
.table>tbody>tr>td,
|
||||
.table>tfoot>tr>td {
|
||||
border: none;
|
||||
font-size: 1.25rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
Reference in New Issue
Block a user