Skip to content

Commit

Permalink
Merge pull request #118 from ShinichiShi/fix/achievements-110
Browse files Browse the repository at this point in the history
Fix : Remove redundant packages
  • Loading branch information
mohit-nagaraj authored Dec 2, 2024
2 parents 2c24ff0 + fc22a05 commit 24af281
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 167 deletions.
10 changes: 5 additions & 5 deletions components/achievements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Marquee from "@/components/magicui/marquee";
import { achievementJson } from "./achievementList";
import Image from 'next/image'

const ReviewCard = ({
const Tile = ({
img,
name,
username,
Expand Down Expand Up @@ -50,13 +50,13 @@ function Achievements() {
</h2>
</div>
<Marquee pauseOnHover className="[--duration:60s]">
{firstRow.map((review) => (
<ReviewCard key={review.id} {...review} />
{firstRow.map((section) => (
<Tile key={section.id} {...section} />
))}
</Marquee>
<Marquee reverse pauseOnHover className="[--duration:60s]">
{secondRow.map((review) => (
<ReviewCard key={review.id} {...review} />
{secondRow.map((section) => (
<Tile key={section.id} {...section} />
))}
</Marquee>
</>
Expand Down
59 changes: 0 additions & 59 deletions components/magicui/animated-list.tsx

This file was deleted.

82 changes: 0 additions & 82 deletions components/ui/AnimatedList.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"react-spinners": "^0.14.1",
"react-spring": "^9.7.4",
"sharp": "^0.33.5",
"swiper": "^11.1.14",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
Expand Down

0 comments on commit 24af281

Please sign in to comment.