Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 2 webseries card #47

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 66 additions & 1 deletion src/Components/Web-Series/HollywoodWeb.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import Got from '../../images/Got.jpg';
import Witcher from '../../images/Witcher.jpg'
import MoneyHiest from '../../images/moneyH.jpg'
import PeakyBlinders from '../../images/PeakyBlinders.png'
import Locke from '../../images/locke.jpg'
import Stranger from '../../images/Stranger.jpg'
const HollywoodWeb = () => {
return (
<>
Expand Down Expand Up @@ -174,7 +176,70 @@ const HollywoodWeb = () => {
</div>
</div>
</Card>

{/* Card 6 */}
<Card>
<div style={{ display: "flex", alignItems: "center" }}>
<div style={{ flex: 1 }}>
<img
src={Locke}
alt="PeakyBlinders"
style={{ maxWidth: "100%", height: "150px" }}
/>
</div>
<div style={{ flex: 6 }}>
<h3>Locke & Key</h3>
<p>
Following their father's murder, three siblings move into a house filled with reality-bending keys; from the comics by Joe Hill and Gabriel Rodriguez.
</p>
<div
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<a
href='https://github.com/YashSachan2'
target="_blank"
rel="noopener noreferrer"
>
<Button type="btn btn-outline-dark gitbtn">Contributed by Yash Sachan</Button></a>
</div>
</div>
</div>
</Card>
{/* Card 7 */}
<Card>
<div style={{ display: "flex", alignItems: "center" }}>
<div style={{ flex: 1 }}>
<img
src={Stranger}
alt="Stranger things"
style={{ maxWidth: "100%", height: "150px" }}
/>
</div>
<div style={{ flex: 6 }}>
<h3>Stranger Things</h3>
<p>
In 1980s Indiana, a group of young friends witness supernatural forces and secret government exploits. As they search for answers, the children unravel a series of extraordinary mysteries.
</p>
<div
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<a
href='https://github.com/YashSachan2'
target="_blank"
rel="noopener noreferrer"
>
<Button type="btn btn-outline-dark gitbtn">Contributed by Yash Sachan</Button></a>
</div>
</div>
</div>
</Card>
</>
);
};
Expand Down
Binary file added src/images/Stranger.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/locke.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading