Skip to content

Commit

Permalink
Merge pull request #32 from jinyeongjang/feat/thunder
Browse files Browse the repository at this point in the history
📦️ Chore: S3-CloudFront CICD Settings 수정
  • Loading branch information
jinyeongjang authored Sep 4, 2024
2 parents 3096bbb + 0cc149e commit 854bf84
Show file tree
Hide file tree
Showing 14 changed files with 511 additions and 374 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="ko">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<link rel="icon" type="image/svg+xml" href="/images/babpiens_favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
Expand Down
36 changes: 36 additions & 0 deletions public/images/babpiens_favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions public/images/babpiens_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/foods/FoodCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ interface FoodCardProps extends PropsWithChildren {
}

const FoodCard = ({ id, info, name, tag, img, ...props }: FoodCardProps) => {
console.log(id, info, name, tag, img, props);
return (
<Link to={`/foods/${id}`} className="flex aspect-square w-full flex-col">
<img src="/images/kimchi.png" alt="" className="grow rounded-[8px]" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/HeaderLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const HeaderLanding = () => {
<div className="fixed z-50 mt-0 flex h-[72px] w-full max-w-[600px] items-center justify-center bg-white px-2 py-5 text-xl font-semibold xs:h-[52px]">
<h1 className="flex w-full max-w-[600px] items-center justify-center">
<Link to={'/'}>
<img src="/images/bobpience_logo2.png" alt="Logo" className="h-full w-[150px]" />
<img src="/images/babpiens_logo.svg" alt="Logo" className="h-full w-[150px]" />
</Link>
</h1>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/thunder/ThunderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { formatAppointmentTime } from '../../utils/formatAppointmentTime';

interface ThunderCardProps {
id: string;
meeting_image_url: string;
meeting_image_url: string | null;
description: string;
paymentMethod: string;
appointmentTime: string;
Expand Down
Loading

0 comments on commit 854bf84

Please sign in to comment.