Skip to content

Commit

Permalink
add video
Browse files Browse the repository at this point in the history
  • Loading branch information
SakinduRansindu committed Dec 2, 2024
1 parent b275abe commit 81e4bca
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,3 @@ next-env.d.ts
ui-debug.log
firebase-debug.log
firestore-debug.log
# next-video
public/videos/*
!public/videos/*.json
!public/videos/*.js
!public/videos/*.ts
public/_next-video
Binary file added public/videos/RUR_Logo.mp4
Binary file not shown.
4 changes: 2 additions & 2 deletions src/components/blocks/expandable-card-standard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function ExpandableCard() {
}
else{
return (
<>
<div className="p-12 max-h-screen dark:bg-custom-dark-color-600 bg-custom-color-600">
<AnimatePresence>
{active && typeof active === "object" && (
<motion.div
Expand Down Expand Up @@ -207,7 +207,7 @@ export default function ExpandableCard() {
</motion.div>
))}
</ul>
</>
</div>
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/use-outside-click.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect } from "react";

export const useOutsideClick = (
ref: React.RefObject<HTMLDivElement>,
callback: Function
callback: (event:any)=>void
) => {
useEffect(() => {
const listener = (event: any) => {
Expand Down

0 comments on commit 81e4bca

Please sign in to comment.