Skip to content

Commit 0facdb6

Browse files
committed
fonts changed
1 parent b5836ef commit 0facdb6

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

src/components/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const Card = ({ paper, onSelect, isSelected }: CardProps) => {
7979

8080
<div className="justify-center">
8181
<div className="flex flex-row items-center justify-between px-4 pb-2">
82-
<div className="font-sans text-sm font-medium">
82+
<div className="play text-md font-medium">
8383
{extractBracketContent(paper.subject)}
8484
</div>
8585
<div className="flex gap-2">

src/components/UpcomingPaper.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ export default function PaperCard({ subject, slots }: PaperCardProps) {
3535
>
3636
{/* Course Code */}
3737
<div className="border-b-2 border-[#453D60] p-2">
38-
<h3 className="vipnabd inline-block rounded-t-lg px-2 py-1 text-base md:text-lg md:tracking-widest">
38+
<h3 className="play font-bold inline-block rounded-t-lg px-2 py-1 text-base md:text-lg md:tracking-widest">
3939
{courseCode} {/* Replace with dynamic code if needed */}
4040
</h3>
4141
</div>
4242

4343
{/* Subject Name */}
4444
<div className="flex flex-col justify-between p-4">
45-
<h2 className="mt-2 text-base font-bold md:text-xl">{courseName}</h2>
45+
<h2 className="play mt-2 text-base font-bold md:text-xl">{courseName}</h2>
4646
{/* Slot Buttons */}
47-
<div className="mt-4 flex gap-2">
47+
<div className="play mt-4 flex gap-2">
4848
{slots?.map((slotValue, index) => capsule(slotValue))}
4949
</div>
5050
{/* See Papers Link */}

src/components/screens/Faq.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ function Faq() {
5656
<>
5757
<div
5858
id="faq"
59-
className="mb-8 w-full px-6 text-center text-4xl font-bold text-[#120020] dark:text-white lg:text-left lg:text-5xl"
59+
className="vipnabd mb-8 w-full px-6 text-center text-4xl font-bold text-[#120020] dark:text-white lg:text-left lg:text-5xl"
6060
>
6161
Frequently Asked Questions
6262
</div>
63-
<div className="mx-auto w-full space-y-6 px-6">
63+
<div className="mx-auto play w-full space-y-6 px-6">
6464
{faqs.map((faq, index) => (
6565
<div
6666
key={index}
@@ -80,11 +80,10 @@ function Faq() {
8080
</button>
8181
</div>
8282
<div
83-
className={`overflow-hidden transition-all duration-300 ease-in-out ${
84-
faqActive === index
85-
? "max-h-40 opacity-100"
86-
: "max-h-0 opacity-0"
87-
}`}
83+
className={`overflow-hidden transition-all duration-300 ease-in-out ${faqActive === index
84+
? "max-h-40 opacity-100"
85+
: "max-h-0 opacity-0"
86+
}`}
8887
>
8988
<p className="mt-2 text-black dark:text-white">{faq.answer}</p>
9089
</div>

src/components/screens/Info.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ function Info() {
1010
className="flex scroll-mt-24 flex-col items-center justify-between px-6 py-12 md:scroll-mt-32 lg:flex-row"
1111
>
1212
<div className="w-full text-center lg:w-[50%] lg:text-left">
13-
<div className="mb-8 block text-3xl font-extrabold text-black dark:text-white lg:text-5xl">
13+
<div className="vipnabd mb-8 block text-3xl font-extrabold text-black dark:text-white lg:text-5xl">
1414
<span>Prepare to excel in </span>
1515
<span>your CATs and FATs </span>
1616
<span>with CodeChef-</span>
1717
<span>VIT’s dedicated </span>
1818
<span>repository of past</span>
1919
<span>exam papers</span>
2020
</div>
21-
<div className="grid gap-4 text-[12px] text-black dark:text-white md:grid-cols-3 xl:text-[16px]">
21+
<div className="grid play gap-4 text-[12px] text-black dark:text-white md:grid-cols-3 xl:text-[16px]">
2222
<FeatureCard icon={<User size={32} />} text="No Sign-up required" />
2323
<FeatureCard
2424
isHighlight

0 commit comments

Comments
 (0)