File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,11 +15,9 @@ interface GuestSectionProps {
1515// GuestSection component renders the special guests section
1616const GuestSection = ( { guests } : GuestSectionProps ) => {
1717 return (
18- < div
19- className = "mt-12 w-full px-8 py-16 bg-[#54595F]"
20- >
18+ < div className = "mt-12 w-full bg-[#54595F] px-8 py-16" >
2119 < h2
22- className = { `text-center text-3xl font-bold text-black font-montserrat leading-[1.15em]` }
20+ className = { `text-center font-montserrat text-3xl font-bold leading-[1.15em] text-black ` }
2321 >
2422 Special Guests
2523 </ h2 >
@@ -28,9 +26,7 @@ const GuestSection = ({ guests }: GuestSectionProps) => {
2826 { guests . map ( ( guest , idx ) => (
2927 < div key = { idx } className = "text-center" >
3028 { /* Guest image box */ }
31- < div
32- className = "relative mx-auto mb-4 flex items-center justify-center overflow-hidden bg-white shadow-md w-[200px] h-[200px]"
33- >
29+ < div className = "relative mx-auto mb-4 flex h-[200px] w-[200px] items-center justify-center overflow-hidden bg-white shadow-md" >
3430 { guest . image ? (
3531 < Image
3632 src = { guest . image }
@@ -44,7 +40,7 @@ const GuestSection = ({ guests }: GuestSectionProps) => {
4440 { /* Guest name and description */ }
4541 < div >
4642 < h3
47- className = { `mb-2 text-lg font-semibold text-white font-montserrat ` }
43+ className = { `mb-2 font-montserrat text-lg font-semibold text-white` }
4844 >
4945 { guest . name }
5046 </ h3 >
Original file line number Diff line number Diff line change @@ -10,14 +10,12 @@ interface SponsorSectionProps {
1010 partners : Partner [ ] ;
1111}
1212
13- const SponsorSection = ( { partners} : SponsorSectionProps ) => {
13+ const SponsorSection = ( { partners } : SponsorSectionProps ) => {
1414 return (
1515 < section className = "bg-gray-100 py-10 text-center" >
16- < h2 className = { `text-2xl font-bold font-montserrat ` } >
16+ < h2 className = { `font-montserrat text-2xl font-bold` } >
1717 Powered By Our{ " " }
18- < span className = { `text-orange-500 font-montserrat` } >
19- Partners
20- </ span >
18+ < span className = { `font-montserrat text-orange-500` } > Partners</ span >
2119 </ h2 >
2220 < div className = "mt-6 flex flex-wrap justify-center gap-6 px-4" >
2321 { partners . map ( ( partner , index ) => (
Original file line number Diff line number Diff line change @@ -48,9 +48,7 @@ const SponsorsAndGuest = () => {
4848 < div className = "min-h-screen bg-background" >
4949 { /* Page title */ }
5050 < div className = "pt-20 text-center" >
51- < h1
52- className = { `text-6xl font-semibold leading-none font-montserrat` }
53- >
51+ < h1 className = { `font-montserrat text-6xl font-semibold leading-none` } >
5452 Guests & Sponsors
5553 </ h1 >
5654 </ div >
You can’t perform that action at this time.
0 commit comments