Skip to content

Commit 9dcc97c

Browse files
committed
release
1 parent 9e8cc04 commit 9dcc97c

File tree

9 files changed

+51
-18
lines changed

9 files changed

+51
-18
lines changed

src/components/footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Footer extends Component {
2626
</Col>
2727
<Col md={6} className="text-center">
2828
<p>
29-
© 2020 All rights reserved | Samartha
29+
© 2021 All rights reserved | Samartha
3030
</p>
3131
</Col>
3232
</Row>

src/components/new_release.js

Lines changed: 48 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,54 @@
1+
import nightmare from '../images/release/nightmare.jpg'
2+
import wickedgames from '../images/release/wicked-games.jpg'
3+
import vlone from '../images/release/vlone.jpg'
4+
import prayforme from '../images/release/pray-for-me.jpg'
5+
import company from '../images/release/company.jpg'
6+
import conversations from '../images/release/conversations.jpg'
7+
import ghost from '../images/release/ghost.jpg'
18
export const Releases=[
29
{
3-
"id":"ka",
4-
"image":"nightmare.jpg",
5-
"desc":"hahahaha",
6-
"name":"KA - yunghog flip",
7-
"yt":"https://github.com/yunghog",
8-
"sc":"https://github.com/yunghog",
9-
"igtv":"https://github.com/yunghog"
10+
"id":"nightmare",
11+
"name":"Nightmare",
12+
"image":nightmare,
13+
"desc":"Blake.zip ft YUNGH OG ",
14+
"yt":"https://youtu.be/WOqiMTQD2pc",
15+
"sc":"https://soundcloud.com/yunghog/nightmare-blakezip-ft-yungh-og",
16+
"igtv":"https://www.instagram.com/tv/CGFfL1fgQwB"
1017
},
1118
{
12-
"id":"neer",
13-
"desc":"fugafuga",
14-
"image":"nightmare.jpg",
15-
"name":"neer - yunghog remix",
16-
"yt":"https://github.com/yunghog",
17-
"sc":"https://github.com/yunghog",
18-
"igtv":"https://github.com/yunghog"
19+
"id":"company",
20+
"name":"Company",
21+
"desc":"Drake X Travis Scott X YUNGH OG",
22+
"image":company,
23+
"yt":"#",
24+
"sc":"https://soundcloud.com/yunghog/drake-company-ft-travis-scott-yungh-og-remix",
25+
"igtv":"https://www.instagram.com/tv/CGNItiagE6C"
26+
},
27+
{
28+
"id":"wickedgames",
29+
"name":"The Weeknd - Wicked Games",
30+
"desc":"YUNGH OG Drill remix",
31+
"image":wickedgames,
32+
"yt":"https://youtu.be/yrGkgZdpeyg",
33+
"sc":"https://soundcloud.com/yunghog/wickedgames",
34+
"igtv":"https://www.instagram.com/tv/CGhg4f0gYTg"
35+
},
36+
{
37+
"id":"conversations",
38+
"name":"Conversations",
39+
"desc":"Aries ft YUNGH OG",
40+
"image":conversations,
41+
"yt":"https://youtu.be/v984jqw9Brw",
42+
"sc":"https://soundcloud.com/yunghog/conversations",
43+
"igtv":"https://www.instagram.com/tv/CJEG9GHlkJL"
44+
},
45+
{
46+
"id":"ghost",
47+
"name":"GHOST",
48+
"desc":"ProdMac ft YUNGH OG",
49+
"image":ghost,
50+
"yt":"https://youtu.be/XyXSCZXAzUw",
51+
"sc":"https://soundcloud.com/yunghog/ghost",
52+
"igtv":"https://www.instagram.com/tv/CB5Igs2gnwE"
1953
}
2054
];

src/images/release/company.jpg

2.02 MB
Loading

src/images/release/conversations.jpg

983 KB
Loading

src/images/release/ghost.jpg

74.7 KB
Loading

src/images/release/pray-for-me.jpg

244 KB
Loading

src/images/release/vlone.jpg

775 KB
Loading

src/images/release/wicked-games.jpg

521 KB
Loading

src/pages/release.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {Container, Row, Col} from 'react-bootstrap';
33
import {Releases} from '../components/new_release.js';
44
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
55
import { faYoutube, faInstagram, faSoundcloud } from '@fortawesome/free-brands-svg-icons';
6-
import nightmare from '../images/release/nightmare.jpg';
76
import hero1 from "../images/hero-1.jpg";
87
import "../css/style.css";
98
import AOS from "aos";
@@ -41,10 +40,10 @@ class Release extends Component {
4140
<div className="release-con">
4241
<div className="release">
4342
<div className="release-img">
44-
<img src={nightmare} alt={this.data.name}/>
43+
<img src={this.data.image} alt={this.data.name}/>
4544
</div>
4645
<div className="release-name">
47-
<h2>{this.data.name}</h2>
46+
<h4>{this.data.name}</h4>
4847
<p>{this.data.desc}</p>
4948
</div>
5049
<div className="release-links-con">

0 commit comments

Comments
 (0)