We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de8384a + 339743d commit 72d5ef9Copy full SHA for 72d5ef9
src/app/_home/_ui/PopularUniversitySection/index.tsx
@@ -1,8 +1,6 @@
1
-//. "use client";
2
import Image from "next/image";
3
import Link from "next/link";
4
5
-// import useWheelHandler from "./_hooks/useWheelHandler";
6
import { ListUniversity } from "@/types/university";
7
8
type PopularUniversitySectionProps = {
@@ -11,7 +9,7 @@ type PopularUniversitySectionProps = {
11
9
12
10
const PopularUniversitySection = ({ universities }: PopularUniversitySectionProps) => {
13
return (
14
- <div className="">
+ <div className="overflow-x-auto">
15
<div className="flex gap-2">
16
{universities.map((university, index) => (
17
<Link key={university.id} href={`/university/${university.id}`}>
0 commit comments