Skip to content

Commit 84ae7dd

Browse files
committedApr 12, 2023
final
1 parent c52cbab commit 84ae7dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/components/Navbar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Navbar({menu,setMenu}) {
4141
<div className='flex-col py-8'>
4242

4343
<a href="#">Department of {departments[dept]}</a>
44-
<div className='font-normal'>Dr. B R Ambedkar National Institute of Technology Jalandhar</div>
44+
<div className='font-normal'>Dr B R Ambedkar National Institute of Technology Jalandhar</div>
4545
</div>
4646
</div>
4747
</div>

‎src/components/Profile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function Profile({ peopleType }) {
135135
<div className="flex-none w-auto max-w-full px-3 my-auto">
136136
<div className="h-full">
137137
<h5 className="mb-1 text-gray-700 text-xl font-semibold">{item?.name}</h5>
138-
<p title={item?.position} className="ml-2 text-zinc-500 mb-0 font-medium leading-normal sm:w-96 whitespace-nowrap overflow-hidden">{item?.position}</p>
138+
<p title={item?.position} className="text-zinc-500 mb-0 font-medium leading-normal sm:w-96 whitespace-nowrap overflow-hidden">{item?.position}</p>
139139
</div>
140140
</div>
141141
</div>

‎src/pages/Society_Clubs_Teams.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Society_Clubs_Tems = () => {
2020
const Intialize = () => {
2121
data?.map((item) => {
2222
item.type === "Club" && setClub(true)
23-
item.type === "Society" && setSoceity(true)
23+
item.type === "Societies" && setSoceity(true)
2424
item.type === "Team" && setTeam(true)
2525
})
2626
}
@@ -39,7 +39,7 @@ const Society_Clubs_Tems = () => {
3939
<div id='scrollcontrol' className='w-full'>
4040
<div className="cards w-full flex snap-x overflow-x-auto scrollhide delay-200 scroll-smooth gap-x-6 px-3 pt-[80px] pb-4">
4141
{
42-
data.filter((e) => e.type === "Coordinator")?.map((item, i) => {
42+
data.filter((e) => e.type === "Societies")?.map((item, i) => {
4343
return (
4444
<div key={i} className="mb-0 w-72 h-full">
4545
<div className="w-full rounded-lg shadow shadow-blue-500 h-full bg-white">

0 commit comments

Comments
 (0)
Please sign in to comment.