-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
498 additions
and
16,034 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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,12 @@ | ||
import React from 'react'; | ||
|
||
const About = () =>{ | ||
return( | ||
<div> | ||
About page | ||
</div> | ||
) | ||
} | ||
|
||
export default About | ||
|
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,12 @@ | ||
import React from 'react'; | ||
|
||
const Contact = () =>{ | ||
return( | ||
<div> | ||
Contact Us page | ||
</div> | ||
) | ||
} | ||
|
||
export default Contact | ||
|
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,12 @@ | ||
import React from 'react'; | ||
|
||
const Events = () =>{ | ||
return( | ||
<div> | ||
Events page | ||
</div> | ||
) | ||
} | ||
|
||
export default Events | ||
|
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,12 @@ | ||
import React from 'react'; | ||
|
||
const Join = () =>{ | ||
return( | ||
<div> | ||
Join Us page | ||
</div> | ||
) | ||
} | ||
|
||
export default Join | ||
|
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,12 @@ | ||
import React from 'react'; | ||
|
||
const Teams = () =>{ | ||
return( | ||
<div> | ||
Teams page | ||
</div> | ||
) | ||
} | ||
|
||
export default Teams | ||
|
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,43 @@ | ||
.container{ | ||
font-family: 'Poppins'; | ||
font-size: 23px; | ||
border-radius: 20px; | ||
box-shadow: 0 5px 20px 0 rgba(29, 21, 21, 0.19); | ||
margin-top: 50px; | ||
width: 60%; | ||
height: 80px; | ||
margin-left: 2%; | ||
justify-content: space-between; | ||
} | ||
|
||
.nav-link{ | ||
margin-left: 20px; | ||
color: black; | ||
} | ||
|
||
.navbar-brand{ | ||
padding-left: 10px; | ||
} | ||
|
||
.active { | ||
background: /* gradient can be an image */ | ||
linear-gradient( | ||
to right, | ||
rgb(243, 8, 28) 0%, | ||
rgb(238, 5, 79) 50%, | ||
rgb(118, 6, 116) 100% | ||
) | ||
left | ||
bottom | ||
no-repeat; | ||
background-size:100% 8px ; | ||
border-radius: 8px; | ||
} | ||
|
||
|
||
@media only screen and (max-width:960px){ | ||
.nav-link{ | ||
background-color : white; | ||
text-align: center; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,9 +1,31 @@ | ||
import React, { Component } from 'react' | ||
import React, { Component } from "react"; | ||
import 'bootstrap/dist/css/bootstrap.min.css'; | ||
import './navbar.css'; | ||
import {Nav, Navbar} from 'react-bootstrap'; | ||
|
||
export default class navbar extends Component { | ||
render() { | ||
return ( | ||
<div>navbar</div> | ||
) | ||
} | ||
|
||
class Navigation extends Component{ | ||
render(){ | ||
return ( | ||
<div className="container"> | ||
<Navbar collapseOnSelect expand="lg" sticky="top" variant="tabs" defaultActiveKey="/home"> | ||
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'></link> | ||
<Navbar.Brand href="#home" className="fa fa-globe"><img width="60" height="60" className="d-inline-block align-top" href="#home" src={process.env.PUBLIC_URL+"CE_Logo.png"} alt="logo"/></Navbar.Brand> | ||
<Navbar.Toggle aria-controls="responsive-navbar-nav" /> | ||
<Navbar.Collapse id="responsive-navbar-nav"> | ||
<Nav> | ||
<Nav.Link href="/">Home</Nav.Link> | ||
<Nav.Link href="/About">About</Nav.Link> | ||
<Nav.Link href="/teams">Team</Nav.Link> | ||
<Nav.Link href="/Events">Events</Nav.Link> | ||
<Nav.Link href="/Join Us">Join Us</Nav.Link> | ||
<Nav.Link href="/Contact Us">Contact Us</Nav.Link> | ||
</Nav> | ||
</Navbar.Collapse> | ||
</Navbar> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default Navigation |
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