From 6e0181071fa8518e9917f0172dbdae4f38cd9db8 Mon Sep 17 00:00:00 2001 From: Naveen Challa Date: Mon, 13 Apr 2026 21:39:24 -0700 Subject: [PATCH] redesign Become a Sponsor page for cleaner UI - Replace broken hero paragraph (had hard-coded newlines) with clean prose - Add stats row (3 cards) replacing cramped single stacked card - Benefit cards now use left accent border for visual hierarchy - Make a Difference section becomes a 3-column grid instead of half-page column - Add proper CTA buttons (View Sponsorship Packet + Contact Us) replacing inline text link - Fix mobile stat label overflow: use text-[10px]/tracking-wide at mobile, uppercase/tracking-widest at sm+ - Consistent space-y-20 vertical rhythm throughout Co-Authored-By: Claude Sonnet 4.6 --- src/app/become-sponsor/page.tsx | 298 +++++++++++++++++++------------- 1 file changed, 174 insertions(+), 124 deletions(-) diff --git a/src/app/become-sponsor/page.tsx b/src/app/become-sponsor/page.tsx index 718219e..25b9dc9 100644 --- a/src/app/become-sponsor/page.tsx +++ b/src/app/become-sponsor/page.tsx @@ -10,160 +10,210 @@ export const metadata: Metadata = { description: "Partner with Formula Slug, UC Santa Cruz's premier engineering team. Support the next generation of engineers.", }; +const benefits = [ + { + title: "Brand Visibility", + description: + "Your logo prominently displayed on our Formula SAE Electric vehicle, team apparel, and digital platforms — gaining direct exposure within the UC Santa Cruz community and beyond.", + }, + { + title: "Recruiting Pipeline", + description: + "Direct access to UCSC's top engineering talent in Electrical, CS, and Computer Engineering. Formula Slug alumni have gone on to Tesla, Apple, Zero Motorcycles, and Joby Aviation. Our 150+ members are motivated, hands-on problem solvers.", + }, + { + title: "Technical Collaboration", + description: + "Opportunities for joint research, product testing, and prototype development. Our teams work on battery management, motor control, composite materials, and autonomous systems — ideal for industry partnerships.", + }, + { + title: "Community Impact", + description: + "Support hands-on STEM education at one of California's premier research universities. Your sponsorship directly bridges academic theory with real-world engineering challenges.", + }, +]; + +const contributions = [ + { + label: "FUNDING", + body: "The team depends on sponsor funding to purchase the materials and components required to build our car.", + }, + { + label: "RESOURCES", + body: "In-kind donations such as parts and services give us the resources to turn our project into reality.", + }, + { + label: "GUIDANCE", + body: "Working with unexplored technology creates challenges. Industry expertise helps us shape the engineers of the future.", + }, +]; + +const stats = [ + { value: "150+", label: "Active Members" }, + { value: "10+", label: "Engineering Disciplines" }, + { value: "7+", label: "Years of Competition" }, +]; + export default function BecomeSponsorPage() { return ( -
+
- - {/* Header centered between navbar and content */} -
-

+ + {/* Page title */} +
+

Become a Sponsor

- -
- {/* Hero Section */} -
-

- Formula Slug is dedicated to empowering the next -generation of engineers by providing hands-on -experience through the design and development -of electric vehicles as part of the Formula SAE -competition. By sponsoring our team, you're directly contributing to hands-on engineering experience to the largest engineering club at UC Santa Cruz. -

+ +
+ + {/* Hero blurb */} +

+ Formula Slug is dedicated to empowering the next generation of + engineers through hands-on design and development of electric + vehicles in the Formula SAE competition. By sponsoring our team, + you're directly funding experiential learning for the largest + engineering club at UC Santa Cruz. +

+ + {/* Stats row */} +
+ {stats.map((stat) => ( +
+
+ {stat.value} +
+
+ {stat.label} +
+
+ ))}
{/* Why Partner With Us */} -
-

+
+

Why Partner With Us?

-
- {[ - { - title: "Brand Visibility", - description: "Your logo prominently displayed on our Formula SAE Electric vehicle, team apparel, and digital platforms. Your company will gain exposure and visibility within the UC Santa Cruz community.", - }, - { - title: "Recruiting Pipeline", - description: "Direct access to UC Santa Cruz's top engineering talent across Electrical, Computer Science, and Computer Engineering disciplines. Formula Slug alumni have gone on to work full-time at companies like Tesla, Apple, Zero Motorcycles and Joby Aviation. Our 150+ members represent motivated, hands-on problem solvers with real-world project experience in electric vehicle technology.", - }, - { - title: "Technical Collaboration", - description: "Opportunities for joint research projects, product testing, and prototype development. Our multidisciplinary teams work on cutting-edge EV technology including battery management, motor control, composite materials, and autonomous systems, which are perfect for industry partnerships.", - }, - { - title: "Community Impact", - description: "Support hands-on STEM education at UC Santa Cruz, one of California's premier research universities. Your sponsorship directly enables experiential learning that bridges academic theory with real-world engineering challenges.", - } - ].map((benefit, index) => ( -
-
-

+
+ {benefits.map((benefit) => ( +
+
+

{benefit.title}

+

+ {benefit.description} +

-

- {benefit.description} -

))}

- {/* What Your Sponsorship Does */} -
-
-
-

- Make A Difference -

-
-
-

- FUNDING -

-

- The team depends on sponsor funding to purchase the materials and components required to build our car. -

-
- -
-

- RESOURCES -

-

- In-kind donations such as parts and services give us the resources to turn our project into reality. -

-
- -
-

- GUIDANCE -

-

- Working with unexplored technology creates challenges. The years of industry experience help us shape the engineers of the future. -

-
-
-
- - {/* Stats Card */} -
-

- By the Numbers -

-
-
-
-
150+
-
Active Members
-
-
-
10+
-
Engineering Disciplines
-
-
-
1
-
Incredible Car
-
+ {/* Make a Difference */} +
+

+ Make a Difference +

+
+ {contributions.map((item) => ( +
+
+ {item.label}
+
+

+ {item.body} +

-
+ ))}
- {/* Sponsorship CTA */} -
-
-

- Ready to Partner With Us? -

-

- Check out our{" "} - - sponsorship packet - - , which includes gold, silver, and bronze sponsorship tiers. -

-

- Interested in a custom sponsorship package? Reach out to discuss opportunities tailored to your organization. -

+ {/* CTA */} +
+

+ Ready to Partner With Us? +

+

+ Review our sponsorship packet to explore Gold, Silver, and Bronze + tiers — or reach out to discuss a custom package tailored to your + organization. +

+
-

); -} \ No newline at end of file +}