-
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
11 changed files
with
321 additions
and
295 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
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 |
---|---|---|
@@ -1,27 +1,26 @@ | ||
import { Link } from "react-router-dom"; | ||
import Logo from '../style/themes/7cav/appsLogo' | ||
import './CavApps.css'; | ||
import Logo from "../style/themes/7cav/appsLogo"; | ||
import "./CavApps.css"; | ||
|
||
function CavApps(props) { | ||
|
||
// Change Page Title | ||
document.title = props.title | ||
document.title = props.title; | ||
|
||
return ( | ||
<div className='masterbox'> | ||
<div className='logobox'> | ||
<Logo | ||
width = '50em' | ||
height = '15em' | ||
/> | ||
<div className="masterbox"> | ||
<div className="logobox"> | ||
<Logo width="50em" height="15em" /> | ||
</div> | ||
<div className='buttonbox'> | ||
<Link to='/adr'><button className="button">Active Duty Roster</button></Link> | ||
<Link to='/rosterstatistics'><button className="button">Roster Statistics</button></Link> | ||
<div className="buttonbox"> | ||
<Link to="/adr"> | ||
<button className="button">Active Duty Roster</button> | ||
</Link> | ||
<Link to="/rosterstatistics"> | ||
<button className="button">Roster Statistics</button> | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
} | ||
|
||
export default CavApps; | ||
|
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 |
---|---|---|
@@ -1,15 +1,22 @@ | ||
import '../index.css'; | ||
import "../index.css"; | ||
|
||
const NoPage = () => { | ||
return ( | ||
return ( | ||
<div> | ||
<h1>404 Error</h1> | ||
<h2>Oh no! you have encountered a page that does not exist!</h2> | ||
<h3>If you believe this is in error, please submit a <a href='https://7cav.us/tickets/categories/2/create'>ticket</a> to S6. Otherwise, please enjoy this sick music!</h3> | ||
<iframe width="420" height="315" src="https://www.youtube.com/embed/4vkR1G_DUVc"/> | ||
</div> | ||
) | ||
<h1>404 Error</h1> | ||
<h2>Oh no! you have encountered a page that does not exist!</h2> | ||
<h3> | ||
If you believe this is in error, please submit a{" "} | ||
<a href="https://7cav.us/tickets/categories/2/create">ticket</a> to S6. | ||
Otherwise, please enjoy this sick music! | ||
</h3> | ||
<iframe | ||
width="420" | ||
height="315" | ||
src="https://www.youtube.com/embed/4vkR1G_DUVc" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NoPage; | ||
|
Oops, something went wrong.