-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/#61-pose' into feature/typedoc
- Loading branch information
Showing
16 changed files
with
17,314 additions
and
36 deletions.
There are no files selected for viewing
Binary file removed
BIN
-6.72 MB
.yarn/cache/@img-sharp-libvips-linux-x64-npm-1.0.0-7dae7d64d5-8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+37 MB
...linux-x64-gnu-npm-14.0.4-816eca9723-8.zip → ...in32-x64-msvc-npm-14.0.4-e7cf0df5d6-8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+19.9 MB
...urbo-linux-64-npm-1.11.3-4f4be4a5b8-8.zip → ...next-npm-14.1.0-a62036d298-077fd76a6f.zip
Binary file not shown.
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import Image from 'next/image' | ||
import React from 'react' | ||
|
||
<<<<<<<< HEAD:service/client/src/components/PoseCard.tsx | ||
export interface PoseCardProps { | ||
exerciseName: string | ||
category: string | ||
src: string[] | ||
onClick?: () => void | ||
} | ||
|
||
export const PoseCard = ({ exerciseName, category, src, onClick }: PoseCardProps) => { | ||
======== | ||
interface poseProps { | ||
exact_name: string | ||
simple_part: string | ||
exact_part: string | ||
thumbnail: string | ||
onClick?: () => void | ||
} | ||
export const PoseCard = ({ exact_name, simple_part, exact_part, thumbnail, onClick }: poseProps) => { | ||
>>>>>>>> feature/#61-pose:service/client/src/app/poses/poseCard.tsx | ||
return ( | ||
<div onClick={onClick} className="gap-x-2 w-[162px] gap-[8px] flex flex-col"> | ||
<div className="rounded-lg h-[162px] w-[162px] p-9px bg-gray25 flex items-center justify-center"> | ||
<Image height={144} width={144} src={thumbnail} alt={exact_name} /> | ||
</div> | ||
<div className="px-[4px] gap-[4px] flex w-full flex-col"> | ||
<p className="text-gray900 text-labelMedium">{exact_name}</p> | ||
<p className="text-gray600 text-bodySmall"> | ||
{simple_part} · {exact_part} | ||
</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
0 |
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