-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #579 from CougarCS/master
Release
- Loading branch information
Showing
12 changed files
with
361 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.discord-button { | ||
background-color: #7289da; | ||
padding: 13px 25px; | ||
display: flex; | ||
align-items: center; | ||
gap: 15px; | ||
border: 0; | ||
border-radius: 7px; | ||
font-weight: 600; | ||
outline: 0px; | ||
box-shadow: none !important; | ||
} | ||
|
||
.discord-button:hover, | ||
.discord-button:active, | ||
.discord-button:focus { | ||
background-color: #627ee2 !important; | ||
} | ||
|
||
.discord-button-wrapper small { | ||
color: #777; | ||
font-size: 11px; | ||
} | ||
|
||
|
||
.info-cta { | ||
margin-top: 60px; | ||
} | ||
|
||
.info-cta p { | ||
font-size: 18px; | ||
margin-bottom: 30px; | ||
} | ||
.ghost-button { | ||
background-color: transparent; | ||
border: 2px solid; | ||
color: var(--color-on-labelAndHeaders); | ||
padding: 13px 25px; | ||
border-radius: 7px; | ||
font-weight: 600; | ||
outline: none; | ||
box-shadow: none !important; | ||
} | ||
|
||
.ghost-button:hover, | ||
.ghost-button:active, | ||
.ghost-button:focus { | ||
background-color: var(--color-on-labelAndHeaders) !important; | ||
border-color: var(--color-on-labelAndHeaders) !important; | ||
color: #fff !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import React from 'react'; | ||
import { Col, Container, Row, Button } from 'react-bootstrap'; | ||
import webgif from '../../assets/CougarCS_Banner.png'; | ||
import { MetaData } from '../../components/Meta/MetaData'; | ||
import discordIcon from '../../assets/icons/discord-icon.webp'; | ||
import './InfoSec.css'; | ||
|
||
const meta = { | ||
title: 'Info-Sec', | ||
desc: 'Learn more about CougarCS InfoSec', | ||
url: 'https://cougarcs.com/infosec', | ||
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'> | ||
Have you ever wanted to learn how to hack into computers or | ||
phish someone through email ? Perhaps you’d like to learn about | ||
best information security practices to protect yourself and | ||
others? Or maybe you are down for competitive hacking in a | ||
controlled environment against external clubs! | ||
</p> | ||
<div className='hero-ctas'> | ||
<div className='discord-button-wrapper'> | ||
<Button | ||
className='discord-button' | ||
href='https://discord.gg/wdxqgErhKF' | ||
target='_blank' | ||
rel='nofollow noopener' | ||
> | ||
<img src={discordIcon} alt='discord button logo' /> | ||
Join Discord | ||
</Button> | ||
<p> | ||
<small>More Information is provided via Discord</small> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</Col> | ||
</Row> | ||
</Container> | ||
<Container fluid className='contained sub-section'> | ||
<h2 className='heading'>Interested in InfoSec at CougarCS?</h2> | ||
<div className='info-cta text-center col-md-8 mx-auto'> | ||
<p> | ||
Develop Soft & Technical Skills - Learn Linux - Protect yourself | ||
on the Internet - Partticapte in Security Challenenges - Earn | ||
CougarCS Member Points | ||
</p> | ||
<Button | ||
className='ghost-button' | ||
href='mailto:tutoring@cougarcs.com?subject=CougarCS Tutor Application' | ||
> | ||
Become a Hacker | ||
</Button> | ||
</div> | ||
</Container> | ||
</> | ||
); | ||
}; | ||
|
||
export default InfoSec; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
.hero.hero-webdev { | ||
padding-bottom: 200px; | ||
} | ||
|
||
.hero-webdev .row { | ||
align-items: center; | ||
} | ||
|
||
.ghost-button { | ||
background-color: transparent; | ||
border: 2px solid; | ||
color: var(--color-on-labelAndHeaders); | ||
padding: 13px 25px; | ||
border-radius: 7px; | ||
font-weight: 600; | ||
outline: none; | ||
box-shadow: none !important; | ||
} | ||
|
||
.ghost-button:hover, | ||
.ghost-button:active, | ||
.ghost-button:focus { | ||
background-color: var(--color-on-labelAndHeaders) !important; | ||
border-color: var(--color-on-labelAndHeaders) !important; | ||
color: #fff !important; | ||
} | ||
|
||
.classes-wrapper { | ||
max-width: 840px; | ||
margin: auto; | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(200px, 200px)); | ||
justify-content: center; | ||
gap: 30px; | ||
} | ||
|
||
.classes-wrapper .class-number { | ||
text-align: center; | ||
border: 0px; | ||
border-radius: 7px; | ||
background: var(--color-secondary); | ||
color: var(--color-on-secondary); | ||
padding: 20px 30px; | ||
font-weight: 600; | ||
font-size: 18px; | ||
} | ||
|
||
/*.tutors-wrapper { | ||
max-width: 750px; | ||
margin: auto; | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | ||
justify-content: center; | ||
column-gap: 60px; | ||
row-gap: 15px; | ||
} | ||
.tutors-wrapper a, | ||
.tutors-wrapper a:hover { | ||
color: var(--color-on-background); | ||
}*/ | ||
|
||
.webdev-cta { | ||
margin-top: 60px; | ||
} | ||
|
||
.webdev-cta p { | ||
font-size: 18px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
/*.fetching { | ||
display: grid; | ||
justify-content: center; | ||
}*/ | ||
|
||
@media (max-width: 767px) { | ||
.hero.hero-webdev { | ||
padding-bottom: 100px; | ||
} | ||
|
||
.hero-webdev .col-md-6:nth-child(1) { | ||
margin-bottom: 75px; | ||
} | ||
|
||
.hero-webdev .col-md-6:nth-child(1) img { | ||
max-height: 300px; | ||
display: block; | ||
margin: auto; | ||
} | ||
|
||
/*.tutors-wrapper { | ||
text-align: center; | ||
} */ | ||
} |
Oops, something went wrong.