Skip to content
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
12 changes: 6 additions & 6 deletions frontend/src/app/components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const Navbar = () => {
<a
href="/selection-criteria"
className="hover:text-secondary text-xl"
// target="_blank"
target="_blank"
rel="noreferrer"
>
Selection Criteria
Expand All @@ -131,7 +131,7 @@ const Navbar = () => {
<a
href="/judging-criteria"
className="hover:text-secondary text-xl"
// target="_blank"
target="_blank"
rel="noreferrer"
>
Judging Criteria
Expand All @@ -144,7 +144,7 @@ const Navbar = () => {
<a
href="/code-of-conduct"
className="hover:text-secondary text-xl"
// target="_blank"
target="_blank"
rel="noreferrer"
>
Code Of Conduct
Expand Down Expand Up @@ -202,7 +202,7 @@ const Navbar = () => {
<ul className={`w-[18.6rem] mt-0.5 text-left list-none ${cabinetMedium.className}`}>
{/* <li className="p-5 mb-2">
<a href="/judging-criteria" className="hover:text-secondary"
// target="_blank"
target="_blank"
rel="noreferrer">
Judging Criteria
</a>
Expand All @@ -213,15 +213,15 @@ const Navbar = () => {
<a
href="/selection-criteria"
className="hover:text-secondary"
// target="_blank"
target="_blank"
rel="noreferrer"
>
Selection Criteria
</a>
</li>
<li className="pt-4 px-6 mb-4">
<a href="/code-of-conduct" className="hover:text-secondary"
// target="_blank"
target="_blank"
rel="noreferrer">
Code Of Conduct
</a>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/app/components/TrackWinner/TrackWinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ export default function TrackWinner({ scrollProgress }: { scrollProgress: number
</div>
</div>
<div className="flex flex-col items-start gap-1 lg:gap-2 px-6">
<p className={`${cabinetRegular.className} text-white text-xs sm:text-xs md:text-xl lg:text-2xl tracking-wide w-full`}>
New Track Added !
<p className={`${cabinetRegular.className} text-white text-xs sm:text-xs md:text-xl lg:text-2xl tracking-wide w-full`}>
Environment Track Added !
</p>
<p className={`${cabinetBlack.className} text-4xl sm:text-4xl md:text-5xl lg:text-7xl text-[#F5C144]`}>
<p className={`${cabinetBlack.className} text-4xl sm:text-4xl md:text-5xl lg:text-7xl text-[#F5C144] `}>
Rs. 15,000
</p>
<p className={`${cabinetRegular.className} text-white text-xs sm:text-xs md:text-xl lg:text-2xl italic tracking-wide w-full`}>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/components/Tracks/TracksHeadingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const TracksHeading = ({
}: TracksHeadingProps) => {
return (
<div
className={`w-full h-fit flex flex-row flex-nowrap gap-2 whitespace-nowrap justify-center items-center cursor-pointer p-3 lg:text-lg text-base ${cabinetBold.className} ${headStyling} rounded-tl-lg rounded-tr-lg `}
className={`w-full h-fit flex flex-row flex-nowrap gap-2 whitespace-nowrap justify-center items-center cursor-pointer p-3 lg:leading-relaxed lg:text-[16px] text-base ${cabinetBold.className} ${headStyling} rounded-tl-lg rounded-tr-lg `}
onClick={onClick}
>
<div className="flex justify-center lg:w-fit md:w-full w-full">{svg}</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/sections/Prizes/PrizesGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function PrizesGrid(): ReactElement {
const ctx = gsap.context(() => {
ScrollTrigger.create({
trigger: sectionRef.current,
start: "top 70%",
start: "top 90%",
end: "bottom 20%",
scrub: true,
onUpdate: (self) => {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/app/sections/Tracks/TracksCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ const TracksCard = () => {
"Enter the World of IoT with DeerHack. Explore connectivity, innovation, and the future of global interaction.",
},
{
title: "Data Science / ML",
title: "Machine Learning / AI",
svg: <DataScienceSVG height={25} width={25} />,
svgBody: <DataScienceNew height={50} width={50} />,
headStyling:
selectedTrack === "Data Science / ML"
selectedTrack === "Machine Learning / AI"
? "bg-purpures text-magnolia active"
: "bg-violet hover:bg-purpures hover:text-magnolia transition-all duration-300",
bodyStyling: "bg-purpures text-magnolia",
description:
"Dive deep into the captivating realm of Data Analysis and Predictive Modeling, Leveraging algorithms ",
"Dive deep into the captivating realm of Data Analysis and Predictive Modeling, Leveraging algorithms and Artificial Intellignce.",
},
{
title: "Blockchain",
Expand Down
Loading