-
Notifications
You must be signed in to change notification settings - Fork 40
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
fb5f452
commit 91142c1
Showing
7 changed files
with
79 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
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
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,34 @@ | ||
import React from "react"; | ||
|
||
const VenueSection = ({cls, title,name, address, link}) => { | ||
return ( | ||
<section className={`bg-hall ${cls} d-flex align-items-center`}> | ||
|
||
<div className="container"> | ||
<div className="row pt-5 pb-5 align-items-center"> | ||
<div className="col-lg-8 col-md-7 text-white text-center text-md-start"> | ||
<h1 className="text-white mb-4 com-head">{title}</h1> | ||
<h3 className="text-white hallhead"> | ||
{name} | ||
</h3> | ||
<p className="text-white"> | ||
{address}</p> | ||
</div> | ||
<div className="col-lg-4 col-md-5 text-center text-md-start"> | ||
<iframe | ||
src={link} | ||
height={400} | ||
allowFullScreen | ||
loading="lazy" | ||
referrerPolicy="no-referrer-when-downgrade" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
|
||
export default VenueSection; | ||
|
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.
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