Skip to content

Commit

Permalink
add recap video
Browse files Browse the repository at this point in the history
  • Loading branch information
m-salmankhan committed Sep 14, 2023
1 parent 741d1af commit 2c62bea
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import { Prizes } from './sections/Prizes';
function App() {
return (
<div className="App">
<iframe className="recap-video" width="560" height="315" src="https://www.youtube.com/embed/yMZZF7GVJqw?si=9x-K1Gavr95iWn-C" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<div className='notice'>
Below is the original website as it was before the event. The event is now over, and you can watch the recap video above! Thank you to everyone who participated, and to our sponsors who made this possible!
</div>
<Header />
<main style={{ minHeight: "100vh" }}>
<About />
Expand Down
11 changes: 11 additions & 0 deletions src/scss/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,15 @@ table {
::selection {
background: rebeccapurple;
color: #fff;
}

.recap-video {
width: 100%;
height: 100vh;
}

.notice {
padding: 5em 2em;
text-align: center;
font-size: 1.5em;
}
7 changes: 7 additions & 0 deletions src/sections/Winners.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const Winners = () => {
return (
<section id="about" className="container">
<h2>Winners</h2>
</section>
);
}

0 comments on commit 2c62bea

Please sign in to comment.