-
Notifications
You must be signed in to change notification settings - Fork 26
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
1 parent
fa7919f
commit 8555c31
Showing
6 changed files
with
107 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React from "react"; | ||
import HeaderData from "../../../assets/data/HeaderContent"; | ||
import { ComingSoon, Header } from "../../shared"; | ||
import "./Venue.scss"; | ||
import first from "../../../assets/images/PrizesImages/first.png"; | ||
import second from "../../../assets/images/PrizesImages/second.png"; | ||
import third from "../../../assets/images/PrizesImages/third.png"; | ||
import agun from "../../../assets/images/PrizesImages/agun.png"; | ||
|
||
const Venue = () => { | ||
return ( | ||
<> | ||
<div className="venue_parent" id="venue"> | ||
<Header {...HeaderData.venue} /> | ||
|
||
<iframe | ||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3673.7460955134566!2d88.4451770749888!3d22.959576179217947!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a027730302f6e25%3A0xe50dfccae21e1fc!2sJIS%20College%20of%20Engineering!5e0!3m2!1sen!2sin!4v1717677449166!5m2!1sen!2sin" | ||
referrerPolicy="no-referrer-when-downgrade" | ||
width={window.innerWidth < 600 ? "300" : "600"} | ||
height={window.innerWidth < 600 ? "300" : "300"} | ||
></iframe> | ||
|
||
<p className="location_header"> | ||
{" "} | ||
JIS College of Engineering Barrackpore | ||
</p> | ||
<p className="location_subheader"> | ||
Kalyani Expy, Block A5, Block A, Kalyani, West Bengal 741235, India | ||
</p> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Venue; |
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,59 @@ | ||
.venue_parent { | ||
padding: 4rem 7rem; | ||
padding-bottom: 0; | ||
margin-top: 8rem; | ||
position: relative; | ||
overflow: hidden; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-family: var(--heading-font); | ||
|
||
@media screen and (max-width: 576px) { | ||
padding: 2rem 1.5rem; | ||
margin-top: 2rem; | ||
} | ||
|
||
iframe { | ||
width: 70%; | ||
margin: 0 auto; | ||
margin-top: 5rem; | ||
height: 500px; | ||
border: none; | ||
border-radius: 20px; | ||
border: 3px solid #ff1717; | ||
|
||
&:focus { | ||
outline: none; | ||
} | ||
|
||
@media screen and (max-width: 576px) { | ||
width: 100%; | ||
height: 200px; | ||
margin-top: 3rem; | ||
} | ||
} | ||
|
||
.location_header { | ||
margin-top: 2rem; | ||
font-size: 2rem; | ||
font-weight: 700; | ||
|
||
@media screen and (max-width: 576px) { | ||
text-align: center; | ||
font-size: 1.3rem; | ||
} | ||
} | ||
|
||
.location_subheader { | ||
margin-top: 0.5rem; | ||
font-size: 1rem; | ||
font-weight: 500; | ||
|
||
@media screen and (max-width: 576px) { | ||
text-align: center; | ||
font-size: 17px; | ||
} | ||
} | ||
} |
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