Skip to content

Commit

Permalink
Merge pull request #39 from DongHY1/feat/project-card
Browse files Browse the repository at this point in the history
Feat/project card
  • Loading branch information
hidaviddong authored Jun 19, 2024
2 parents f49d9aa + e2b457b commit 2ccf4ea
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Binary file removed public/1.png
Binary file not shown.
Binary file added public/comments.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/data-visualization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/daviddong.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/llm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/tme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/ui/bento-grid.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const BentoCard = ({ name, className, background, description, href }) => {
>
<img
src={background}
className="border rounded-md absolute md:-right-36 md:-top-20 md:transition-all md:duration-300 md:ease-out md:scale-[0.6] md:group-hover:scale-100"
className="border rounded-md absolute md:-right-36 md:-top-[90px] md:transition-all md:duration-300 md:ease-out md:scale-[0.6] md:group-hover:scale-100"
alt={name}
/>
<div className="pointer-events-none z-10 flex transform-gpu flex-col gap-1 md:p-6 pl-4 transition-all duration-300 group-hover:-translate-y-10">
Expand Down
10 changes: 5 additions & 5 deletions src/config/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ const Works = [
name: "Large Language Model",
description: "Medical field chat application.",
href: "/project/llm",
background: "/1.png",
background: "/llm.png",
},
{
name: "Data Visualization",
description: "Chart and 3D models.",
href: "/project/data-visualization",
background: "/1.png",
background: "/data-visualization.png",
},
{
name: "Hybrid Mobile App",
description: "QQ Music / We Sing Living Room.",
href: "/project/tme",
background: "/1.png",
background: "/tme.png",
},
];

Expand All @@ -24,13 +24,13 @@ const OpenSourceProjects = [
name: "Comments",
description: "Add comments to your website.",
href: "/project/comments",
background: "/1.png",
background: "/comments.png",
},
{
name: "daviddong.me",
description: "Personal website template.",
href: "/project/website",
background: "/1.png",
background: "/daviddong.png",
},
];

Expand Down

0 comments on commit 2ccf4ea

Please sign in to comment.