-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InfoSec Page and Replacement of undraw images #577
Changes from 2 commits
9521960
289f5d2
2b37a32
8878eca
113e79c
1243413
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ const NavBar = () => { | |
{/* when hackathon will return to active it again no need to delete */} | ||
{/* <ActiveListItem url='/hackathons' name='Hackathons' /> */} | ||
<ActiveListItem url='/contactus' name='Contact Us' /> | ||
<ActiveListItem url='/InfoSec' name='InfoSec' /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. url should be /infosec to be consistent with current style There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. info sec should be before contact us in the navbar. |
||
<Nav.Link href='https://uhcode.red/' target='_blank' rel='noreferrer'> | ||
CodeRED <i className='fas fa-external-link-alt'></i> | ||
</Nav.Link> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import React from 'react'; | ||
import { Col, Container, Row } from 'react-bootstrap'; | ||
import webgif from '../../assets/CougarCS_Banner.png'; | ||
import { MetaData } from '../../components/Meta/MetaData'; | ||
import './InfoSec.css'; | ||
|
||
const meta = { | ||
title: 'Info-Sec', | ||
desc: 'Learn more about CougarCS Web-Dev', | ||
url: 'https://cougarcs.com/web-dev', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change to be accurate to current site. |
||
img: 'https://i.ibb.co/NTLFrdj/cougarcs-background11.jpg', | ||
}; | ||
const InfoSec = () => { | ||
return ( | ||
<> | ||
<MetaData {...meta} /> | ||
<Container fluid className='contained hero hero-web'> | ||
<Row className='pb-5'> | ||
<Col md='6' className='order-md-2'> | ||
<img | ||
src={webgif} | ||
alt='banner svg' | ||
className='img-fluid' | ||
style={{ borderRadius: '10px' }} | ||
></img> | ||
</Col> | ||
<Col md='6' className='order-md-0'> | ||
<div className='about-us'> | ||
<h1>InfoSec at CougarCS</h1> | ||
<p className='lead-text'> | ||
Information Security something maybe put team members below not | ||
to sure what the vision is here | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. look at webdev/tutoring for help on making this page to look better. Discord button should link to info sec discord. |
||
</p> | ||
</div> | ||
</Col> | ||
</Row> | ||
</Container> | ||
</> | ||
); | ||
}; | ||
|
||
export default InfoSec; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move route between tutoring and gallery/event