Skip to content

Commit 1d46d99

Browse files
committed
fix: Adjust grid layout and prize amount display in HeroSection and Prizes components
1 parent 0353f41 commit 1d46d99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const HeroSection = () => {
8787
</div>
8888

8989
<div className="animate-slide-up mt-8 sm:mt-10 lg:mt-12" style={{ animationDelay: "0.4s" }}>
90-
<div className="grid grid-cols-1 sm:grid-cols-3 gap-3 sm:gap-4 md:gap-6 max-w-lg sm:max-w-none mx-auto lg:mx-0">
90+
<div className="grid grid-cols-3 sm:grid-cols-3 gap-3 sm:gap-4 md:gap-6 max-w-lg sm:max-w-none mx-auto lg:mx-0">
9191
{[
9292
{ icon: Calendar, label: "Duration", value: "24H" },
9393
{ icon: Users, label: "Hackers", value: "500+" },
@@ -151,7 +151,7 @@ const HeroSection = () => {
151151
</div>
152152

153153
{/* Enhanced button section with improved interactions */}
154-
<div className="animate-slide-up flex flex-col sm:flex-row gap-3 sm:gap-4 mt-8 sm:mt-10 lg:mt-12 justify-center lg:justify-start" style={{ animationDelay: "0.8s" }}>
154+
<div className="animate-slide-up flex flex-row gap-3 sm:gap-4 mt-8 sm:mt-10 lg:mt-12 justify-center lg:justify-start" style={{ animationDelay: "0.8s" }}>
155155
<button
156156
onMouseEnter={() => setIsHovering("register")}
157157
onMouseLeave={() => setIsHovering(null)}

src/components/Prizes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Prizes: React.FC = () => {
3535
},
3636
{
3737
position: "4th & 5th Place",
38-
amount: "Consolidated Prizes (TBA)",
38+
amount: "(TBA)",
3939
icon: Star,
4040
color: "from-blue-400 to-blue-600",
4141
bgColor: "from-blue-50 to-blue-100 dark:from-blue-900/20 dark:to-blue-800/20",
@@ -82,7 +82,7 @@ const Prizes: React.FC = () => {
8282
</div>
8383

8484
{/* Main Prize Cards */}
85-
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
85+
<div className="grid grid-cols-2 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
8686
{prizes.map((prize, index) => {
8787
const IconComponent = prize.icon
8888
return (

0 commit comments

Comments
 (0)