Skip to content

Commit

Permalink
FinalT
Browse files Browse the repository at this point in the history
  • Loading branch information
barchakuz committed May 12, 2024
1 parent 5bc9649 commit d01d890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/courses/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function page() {
<h1 className='text-2xl md:text-4xl lg:text-5xl text-white font-bold text-center mb-8'>Total Courses {CourseData.courses.length}</h1>
</div>
<div className='grid grid-cols-1 sm:grid-cols-3 md:grid-cols-2 lg:grid-cols-3'>
{CourseData.courses.map((data)=>(
<CardContainer className="inter-var">
{CourseData.courses.map((data, index)=>(
<CardContainer key={index} className="inter-var">
<CardBody className="bg-gray-50 relative group/card dark:hover:shadow-2xl dark:hover:shadow-emerald-500/[0.1] dark:bg-black dark:border-white/[0.2] border-black/[0.1] w-auto sm:w-[20rem] h-auto rounded-xl p-6 border ">
<CardItem
translateZ="50"
Expand Down

0 comments on commit d01d890

Please sign in to comment.