-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added N2O to mobile prof-shows
- Loading branch information
Showing
6 changed files
with
148 additions
and
2 deletions.
There are no files selected for viewing
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.
98 changes: 98 additions & 0 deletions
98
components/MobileLanding/Artist/ArtistN2O/artistn2o.module.scss
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,98 @@ | ||
.name { | ||
color: #fff; | ||
text-align: right; | ||
font-family: "Thedus Condensed Light", sans-serif; | ||
font-size: 50px; | ||
font-style: normal; | ||
font-weight: 900; | ||
line-height: 36px; /* 67.021% */ | ||
letter-spacing: 2.867px; | ||
mix-blend-mode: difference; | ||
text-align: left; | ||
margin-left: 1.8rem; | ||
} | ||
|
||
.info { | ||
display: flex; | ||
flex-direction: row; | ||
position: relative; | ||
|
||
.button { | ||
display: flex; | ||
flex-direction: column; | ||
margin-left: 1.8rem; | ||
gap: 0.7rem; | ||
|
||
.date { | ||
color: #fff; | ||
font-family: "Tilt Warp", sans-serif; | ||
font-size: 19.52px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 40px; /* 571.875% */ | ||
letter-spacing: 0.976px; | ||
mix-blend-mode: difference; | ||
padding-top: 0.5rem; | ||
text-align: left; | ||
} | ||
|
||
.youtube { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 0.7rem; | ||
|
||
a { | ||
display: flex; | ||
text-align: center; | ||
gap: 7px; | ||
padding: 0 10px; | ||
align-items: center; | ||
text-decoration: none; | ||
background-color: #e4c66b; | ||
height: 30px; | ||
width: fit-content; | ||
border-radius: 23px; | ||
color: #000000; | ||
|
||
Image { | ||
height: 12px; | ||
width: 15px; | ||
} | ||
|
||
p { | ||
font-family: Thedus Condensed Light,sans-serif; | ||
font-size: 14px; | ||
font-weight: 900; | ||
line-height: 111.63px; | ||
letter-spacing: 0.05em; | ||
text-align: left; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.artistImg { | ||
position: absolute; | ||
right: 0; | ||
top: -40px; | ||
} | ||
} | ||
|
||
@media(max-width: 400px) { | ||
.name { | ||
font-size: 43px; | ||
line-height: 30px; | ||
} | ||
} | ||
|
||
@media(max-width:370px) { | ||
.name { | ||
margin-left: 1.3rem; | ||
} | ||
|
||
.info { | ||
.button { | ||
margin-left: 1.3rem; | ||
} | ||
} | ||
} |
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,43 @@ | ||
import React from "react"; | ||
import styles from "./artistn2o.module.scss"; | ||
import harshVivek from "@/assets/MobileLanding/ProfShowsMobile/HarshVivek.png"; | ||
import youtube from "@/assets/MobileLanding/ProfShowsMobile/youtube.svg"; | ||
import Image from "next/image"; | ||
|
||
export default function ArtistN2O() { | ||
return ( | ||
<> | ||
<div className={styles.name}> | ||
<p>HARSH GUJRAL</p> | ||
<p>VIVEK SAMTANI</p> | ||
</div> | ||
<div className={styles.info}> | ||
<div className={styles.button}> | ||
<div className={styles.date}>October 27</div> | ||
<div className={styles.youtube}> | ||
<a href="https://www.youtube.com/@Harshgujral" target="_main"> | ||
<Image | ||
src={youtube} | ||
alt="icon" | ||
/> | ||
<p>@harshgujral</p> | ||
</a> | ||
<a href="https://www.youtube.com/@VivekSamtani" target="_main"> | ||
<Image | ||
src={youtube} | ||
alt="icon" | ||
/> | ||
<p>@viveksamtani</p> | ||
</a> | ||
</div> | ||
</div> | ||
<div className={styles.artistImg}> | ||
<Image | ||
src={harshVivek} | ||
alt="n2o" | ||
/> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
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