From efa1ea08de014d6861e50546cdbfe0994bb26bf9 Mon Sep 17 00:00:00 2001 From: Khushi Khan Date: Thu, 6 Nov 2025 00:28:35 -0500 Subject: [PATCH 01/11] some of sponsor us assets, moved some folders, styled the section a little --- .../SponsorUsTestimonialsBackground.tsx | 637 ++++++++++++++++++ .../components/SponsorUsTestimonials.tsx | 35 + apps/main/src/app/sponsor-us/page.tsx | 4 +- .../components}/SponsorTicketBoothComp.tsx | 4 +- .../components}/SponsorTicketComp.tsx | 4 +- apps/main/src/app/sponsors/page.tsx | 4 +- 6 files changed, 681 insertions(+), 7 deletions(-) create mode 100644 apps/main/src/app/lib/Assets/SVG/SponsorUsPageAssets/SponsorUsTestimonialsBackground.tsx create mode 100644 apps/main/src/app/sponsor-us/components/SponsorUsTestimonials.tsx rename apps/main/src/app/{lib/Components/SponsorComponents => sponsors/components}/SponsorTicketBoothComp.tsx (92%) rename apps/main/src/app/{lib/Components/SponsorComponents => sponsors/components}/SponsorTicketComp.tsx (87%) diff --git a/apps/main/src/app/lib/Assets/SVG/SponsorUsPageAssets/SponsorUsTestimonialsBackground.tsx b/apps/main/src/app/lib/Assets/SVG/SponsorUsPageAssets/SponsorUsTestimonialsBackground.tsx new file mode 100644 index 00000000..f24b643a --- /dev/null +++ b/apps/main/src/app/lib/Assets/SVG/SponsorUsPageAssets/SponsorUsTestimonialsBackground.tsx @@ -0,0 +1,637 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const SponsorUsTestimonialsBackground = (props: SVGProps) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); +export default SponsorUsTestimonialsBackground; \ No newline at end of file diff --git a/apps/main/src/app/sponsor-us/components/SponsorUsTestimonials.tsx b/apps/main/src/app/sponsor-us/components/SponsorUsTestimonials.tsx new file mode 100644 index 00000000..fdd6b58a --- /dev/null +++ b/apps/main/src/app/sponsor-us/components/SponsorUsTestimonials.tsx @@ -0,0 +1,35 @@ +"use client"; + +import React from "react"; +import SponsorUsTestimonialsBackground from "../../lib/Assets/SVG/SponsorUsPageAssets/SponsorUsTestimonialsBackground"; +import RibbonTitle from "@repo/ui/RibbonTitle"; +import clsx from "clsx"; + +export default function SponsorUsTestimonials() { + const outerDivStyles = clsx( + "relative flex flex-col items-center justify-center overflow-hidden" + ); + + const outerRibbonStyles = clsx( + "absolute z-10 top-[20%] w-full" + ); + + const ribbonScaling = clsx( + "scale-50" + ); + + const backgroundStyles = clsx( + "relative z-0 w-[165vw] h-full bg-green -ml-10" + ); + + return ( +
+
+
+ +
+
+ +
+ ) +} \ No newline at end of file diff --git a/apps/main/src/app/sponsor-us/page.tsx b/apps/main/src/app/sponsor-us/page.tsx index be0131fb..e10ea2fc 100644 --- a/apps/main/src/app/sponsor-us/page.tsx +++ b/apps/main/src/app/sponsor-us/page.tsx @@ -5,6 +5,7 @@ import SponsorUsStatsComp from "./Sections/SponsorUsStatsComp.tsx"; import SponsorTop from "./Sections/SponsorTop.tsx"; import BenefitsSection from "./Sections/BenefitsSection.tsx"; import { Footer, NavBar } from "../lib/Components"; +import SponsorUsTestimonials from "./components/SponsorUsTestimonials.tsx"; const SponsorUsPage = () => { return ( @@ -13,7 +14,8 @@ const SponsorUsPage = () => { - + {/* TODO: Past Sponsors Section */} +