Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "brainbox-frontend",
"version": "1.4.2",
"version": "1.4.3",
"description": "Frontend for BrainBox",
"author": "lzaycoe (Lazy Code)",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/app/(learners)/category/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const CategoryPage = () => {
<h2 className="text-3xl font-semibold text-center mb-8">
All Courses in Software Engineering
</h2>
<CourseComponent initialCourses={null} />
<CourseComponent />
</div>
</main>
);
Expand Down
4 changes: 3 additions & 1 deletion src/components/learners/contact/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import Image from 'next/image';
import { GoMail } from 'react-icons/go';

Expand Down Expand Up @@ -38,7 +40,7 @@ interface BranchCardProps {
}

const BranchCard = ({ image, location, address }: BranchCardProps) => (
<div className="flex relative flex-col px-6 pt-60 pb-6 aspect-[0.857] min-w-60 w-[312px] px-6 max-md:px-5 max-md:pt-24">
<div className="flex relative flex-col px-6 pt-60 pb-6 aspect-[0.857] min-w-60 w-[312px] max-md:px-5 max-md:pt-24">
<Image
src={image}
alt={`${location} branch`}
Expand Down