diff --git a/src/components/AITutor/AIExploreCourseListing.tsx b/src/components/AITutor/AIExploreCourseListing.tsx
index dfa8ceca8..c0a357429 100644
--- a/src/components/AITutor/AIExploreCourseListing.tsx
+++ b/src/components/AITutor/AIExploreCourseListing.tsx
@@ -88,10 +88,26 @@ export function AIExploreCourseListing() {
{!isAnyLoading && (
<>
-
- Community has generated{' '}
- {humanizeNumber(exploreAiCourses?.totalCount || 0)} courses
-
+
+
+ Community has generated{' '}
+ {humanizeNumber(exploreAiCourses?.totalCount || 0)} courses
+
+
+
+
{
+ setPageState({ ...pageState, currPage: String(page) });
+ }}
+ className=""
+ />
+
+
{courses && courses.length > 0 && (
diff --git a/src/components/ContentGenerator/FormatItem.tsx b/src/components/ContentGenerator/FormatItem.tsx
index 9e93408cc..9797ac0c5 100644
--- a/src/components/ContentGenerator/FormatItem.tsx
+++ b/src/components/ContentGenerator/FormatItem.tsx
@@ -17,7 +17,7 @@ export function FormatItem(props: FormatItemProps) {
className={cn(
'flex w-full flex-col items-center justify-center gap-2.5 rounded-xl border border-gray-200 p-2 py-8',
isSelected
- ? 'border-gray-700 font-medium bg-white'
+ ? 'border-gray-400 font-medium bg-white'
: 'bg-white text-gray-400 hover:bg-white hover:border-gray-300',
)}
onClick={onClick}
diff --git a/src/components/Pagination/Pagination.tsx b/src/components/Pagination/Pagination.tsx
index c20214c8b..cfac40800 100644
--- a/src/components/Pagination/Pagination.tsx
+++ b/src/components/Pagination/Pagination.tsx
@@ -51,7 +51,7 @@ export function Pagination(props: PaginationProps) {
onPageChange(currPage - 1);
}}
disabled={currPage === 1 || isDisabled}
- className="rounded-md border px-2 py-1 hover:bg-gray-100 disabled:cursor-not-allowed disabled:opacity-40"
+ className="rounded-md bg-white border px-2 py-1 hover:bg-gray-100 disabled:cursor-not-allowed disabled:opacity-40"
>
←
@@ -91,7 +91,7 @@ export function Pagination(props: PaginationProps) {
)}