Skip to content

Commit

Permalink
파트너 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dasdfadssda committed Dec 28, 2023
1 parent 11b9fad commit 2cf8c64
Showing 1 changed file with 49 additions and 21 deletions.
70 changes: 49 additions & 21 deletions src/components/Mobile/Mob-HomePage/HomePartner_Mob.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import AsanImg from "../../../assets/img/ASANImg.png";
import MobitImg from "../../../assets/img/MobitImg.png";
import NextChallengeImg from "../../../assets/img/NextChallengeImg.png";
import PickPly from "../../../assets/img/Pickply_Img.png";
import dCamp from "../../../assets/img/dCamp.PNG";
import AWS from "../../../assets/img/AWS_logo.PNG";

const Header7 = styled.div`
font-size: ${(props) => props.theme.Mob_fontSizes.Header7};
Expand All @@ -32,66 +34,66 @@ const Subtitle3 = styled.div`
`;

const DisquietImage1 = styled.img`
width: 193px;
height: 40px;
width: 40%;
height: auto;
padding-top: 60px;
cursor: pointer;
`;

const LincImage2 = styled.img`
width: 120px;
height: 40px;
width: 40%;
height: auto;
padding-top: 60px;
cursor: pointer;
`;

const ImpactCampusImage3 = styled.img`
width: 260px;
height: 40px;
width: 40%;
height: auto;
padding-top: 60px;
cursor: pointer;
`;

const SImage4 = styled.img`
width: 230px;
height: 60px;
width: 40%;
height: auto;
padding-top: 60px;
cursor: pointer;
`;

const Spacklab = styled.img`
width: 182px;
height: 55px;
width: 40%;
height: auto;
padding-top: 50px;
margin-right: 25px;
cursor: pointer;
`;

const AsanImgDiv = styled.img`
width: 200px;
height: 75px;
width: 40%;
height: auto;
padding-top: 83px;
cursor: pointer;
`;

const NextChallenge1Img = styled.img`
width: 223px;
height: 40px;
width: 40%;
height: auto;
padding-top: 50px;
cursor: pointer;
`;

const MobitDiv = styled.img`
width: 167px;
height: 50px;
width: 40%;
height: auto;
padding-top: 50px;
cursor: pointer;
`;

const PickPlyDiv = styled.img`
width: 180px;
height: 55px;
padding-top: 50px;
width: 40%;
height: auto;
padding-top: 50px;
cursor: pointer;
`;

Expand All @@ -104,7 +106,8 @@ const Div = styled.div`
`;
const PartDiv = styled.div`
padding-top: 131px;
height: 1180px;
min-height: 1580px;
height: auto;
padding-left: 10px;
`;

Expand All @@ -117,6 +120,19 @@ const ContentWrapper = styled.div`
margin-top: 43px;
`;

const AWSImg = styled.img`
width: 40%;
height: auto;
margin-top: -90px;
cursor: pointer;
`;

const Dcamp = styled.img`
width: 40%;
height: auto;
cursor: pointer;
`;

function HomePartnerMob() {
const handleClickSpark = () => {
window.open("https://sparklabs.co.kr/lb/index.php", "_blank");
Expand Down Expand Up @@ -145,6 +161,12 @@ function HomePartnerMob() {
const handleClickPickPly = () => {
window.open("https://pickply.com/company ", "_blank");
};
const handleClickDcamp = () => {
window.open("https://dcamp.kr/", "_blank");
};
const handleClickAWS = () => {
window.open("https://aws.amazon.com/ko/?nc2=h_lg", "_blank");
};

return (
<Div>
Expand Down Expand Up @@ -177,7 +199,13 @@ function HomePartnerMob() {
/>
<SImage4 onClick={handleClickSwyg} src={SImage} alt="S" />
<MobitDiv onClick={handleClickMobit} src={MobitImg} alt="Mobit" />
<PickPlyDiv onClick={handleClickPickPly} src={PickPly} alt="PickPly" />
<PickPlyDiv
onClick={handleClickPickPly}
src={PickPly}
alt="PickPly"
/>
<Dcamp onClick={handleClickDcamp} src={dCamp} alt="dCamp" />
<AWSImg onClick={handleClickAWS} src={AWS} alt="AWS" />
</ContentWrapper>
</ThemeProvider>
</PartDiv>
Expand Down

0 comments on commit 2cf8c64

Please sign in to comment.