Skip to content

Commit

Permalink
fix: speicla guest 페이지 데이터 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
junyeokk committed May 15, 2024
1 parent 6b25c8d commit dd72960
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Binary file added src/assets/leesangmi.webp
Binary file not shown.
Binary file added src/assets/leeyeonghyun.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/pages/SpecialGuestPage.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const MainContent = styled.div`
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-top: 50px;
position: relative;
p {
text-shadow: 0px 2px 4px rgba(0, 0, 0, 25%);
Expand All @@ -27,7 +27,7 @@ export const GuestContainer = styled.div`
flex-direction: column;
gap: 36px;
p {
text-shadow: none;
text-shadow: 0px 2px 4px rgba(0, 0, 0, 25%);
}
`;
export const Date = styled.div`
Expand Down
16 changes: 8 additions & 8 deletions src/pages/SpecialGuestPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ import { Text } from "@/components/typography/Text";

import tencmImg from "@/assets/10cm.jpg";
import backImg from "@/assets/BackImg.png";
import bigmamaImg from "@/assets/bigmama.webp";
import hahaImg from "@/assets/haha.webp";
import jannaviImg from "@/assets/jannavi.jpg";
import leesangmi from "@/assets/leesangmi.webp";
import leeyeonghyun from "@/assets/leeyeonghyun.webp";
import loykimImg from "@/assets/loykim.webp";
import norazoImg from "@/assets/norazo.jpg";
import paulblancoImg from "@/assets/paulblanco.avif";
import qwerImg from "@/assets/qwer.webp";
import soranbandImg from "@/assets/soranband.webp";

import { MainContent, GuestCard, GuestContainer, Date, BackImg } from "./SpecialGuestPage.styled";

const SpecialGuestPage: React.FC = () => {
const [activeDate, setActiveDate] = useState<string>("5.22");
const [activeDate, setActiveDate] = useState<string>("5.21");

const handleDateClick = (date: string) => {
setActiveDate(date);
Expand All @@ -31,19 +31,19 @@ const SpecialGuestPage: React.FC = () => {

const guestData: GuestData = {
"5.21": [
{ pic: jannaviImg, name: "잔나비" },
{ pic: leesangmi, name: "이상미(EX)" },
{ pic: norazoImg, name: "노라조" },
{ pic: soranbandImg, name: "소란밴드" },
{ pic: jannaviImg, name: "잔나비" },
],
"5.22": [
{ pic: hahaImg, name: "하하" },
{ pic: qwerImg, name: "QWER" },
{ pic: tencmImg, name: "10CM" },
{ pic: hahaImg, name: "하하" },
],
"5.23": [
{ pic: paulblancoImg, name: "Paul Balnco" },
{ pic: loykimImg, name: "로이킴" },
{ pic: bigmamaImg, name: "빅마마" },
{ pic: paulblancoImg, name: "Paul Balnco" },
{ pic: leeyeonghyun, name: "이영현(빅마마)" },
],
};
const renderGuests = () => {
Expand Down

0 comments on commit dd72960

Please sign in to comment.