forked from soumyajit4419/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from paulofph/feat/add-media
Feat/add media
- Loading branch information
Showing
14 changed files
with
167 additions
and
7 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
import { Container, Row, Col } from "react-bootstrap"; | ||
import Particle from "../Particle"; | ||
import PodcastLeadershipt from "../../Assets/Media/PodcastLeadership.png"; | ||
import MediaCard from "./MediaCard"; | ||
|
||
function Media() { | ||
return ( | ||
<Container fluid className="media-section"> | ||
<Particle /> | ||
<Container> | ||
<h1 className="project-heading"> | ||
In the <strong className="highlighted-text">Media </strong> | ||
</h1> | ||
<p style={{ color: "white" }}> | ||
These are some of the places where I've shared my insights and ideas. | ||
</p> | ||
<Row style={{ justifyContent: "center", paddingBottom: "10px" }}> | ||
<Col md={4} className="project-card"> | ||
<MediaCard | ||
imgPath={PodcastLeadershipt} | ||
isBlog={false} | ||
title="Podcast: Team Leading in Product Engineering" | ||
youtubeLink="https://www.youtube.com/watch?v=4G_3dCKBe5E&ab_channel=epilotTech" | ||
spotifyLink="https://open.spotify.com/episode/7vE8eosRbUNZvigzZEWl1N?si=L1BTae4gRTaJhEsxUi0Ztw" | ||
/> | ||
</Col> | ||
</Row> | ||
</Container> | ||
</Container> | ||
); | ||
} | ||
|
||
export default Media; |
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,21 @@ | ||
import React from "react"; | ||
import Card from "react-bootstrap/Card"; | ||
|
||
import YoutubeButton from "./YoutubeButton/YoutubeButton"; | ||
import SpotifyButton from "./SpotifyButton/SpotifyButton"; | ||
|
||
function MediaCard(props) { | ||
return ( | ||
<Card className="project-card-view"> | ||
<Card.Img variant="top" src={props.imgPath} alt="card-img" /> | ||
<Card.Body> | ||
<Card.Title><b>{props.title}</b></Card.Title> | ||
</Card.Body> | ||
<Card.Footer> | ||
<YoutubeButton href={props.youtubeLink}></YoutubeButton> | ||
<SpotifyButton href={props.spotifyLink}></SpotifyButton> | ||
</Card.Footer> | ||
</Card> | ||
); | ||
} | ||
export default MediaCard; |
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,4 @@ | ||
.btn-spotify { | ||
background-color: #1DB954 !important; | ||
color: white !important; | ||
} |
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,21 @@ | ||
import React from "react"; | ||
import Button from "react-bootstrap/Button"; | ||
import { FaSpotify } from "react-icons/fa"; | ||
|
||
import "./SpotifyButton.css"; | ||
|
||
|
||
function SpotifyButton(props) { | ||
return ( | ||
<Button | ||
variant="spotify" | ||
href={props.href} | ||
target="_blank" | ||
style={{ marginLeft: "10px" }} | ||
> | ||
<FaSpotify /> | ||
{"Spotify"} | ||
</Button> | ||
); | ||
} | ||
export default SpotifyButton; |
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,4 @@ | ||
.btn-youtube { | ||
background-color: red !important; | ||
color: white !important; | ||
} |
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,20 @@ | ||
import React from "react"; | ||
import Button from "react-bootstrap/Button"; | ||
import { FaYoutube } from "react-icons/fa"; | ||
|
||
import "./YoutubeButton.css"; | ||
|
||
function YoutubeButton(props) { | ||
return ( | ||
<Button | ||
variant="youtube" | ||
href={props.href} | ||
target="_blank" | ||
style={{ marginLeft: "10px" }} | ||
> | ||
<FaYoutube /> | ||
{"Youtube"} | ||
</Button> | ||
); | ||
} | ||
export default YoutubeButton; |
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