Skip to content

Commit a90eb73

Browse files
committed
style(ewd): Update sponsor section layout and improve logo sizes for better presentation
1 parent fbccf53 commit a90eb73

File tree

1 file changed

+22
-14
lines changed

1 file changed

+22
-14
lines changed

apps/epic-web/src/pages/conf/2025/index.tsx

+22-14
Original file line numberDiff line numberDiff line change
@@ -720,9 +720,11 @@ const Sponsors = () => {
720720
<h2 className="pb-5 text-3xl font-semibold sm:text-4xl">Sponsors</h2>
721721
<div className="flex flex-wrap items-center justify-center gap-x-5 gap-y-16">
722722
{platinum.length > 0 && (
723-
<div className="flex flex-col items-center gap-8 px-5 sm:flex-row sm:gap-16 sm:px-10">
724-
<p className="w-20 font-mono text-sm uppercase">Platinum:</p>
725-
<div className="flex flex-col items-center gap-10 sm:flex-row sm:gap-16">
723+
<div className="flex w-full flex-col items-center gap-10 px-5 sm:flex-col sm:px-10">
724+
<div className="flex w-full items-center justify-center border-b py-2 sm:justify-start">
725+
<p className="font-mono text-sm uppercase">Platinum Sponsors</p>
726+
</div>
727+
<div className="flex flex-col flex-wrap items-center gap-10 sm:flex-row sm:gap-20">
726728
{platinum.map(
727729
(s: {name: string; url: string; logo: React.JSX.Element}) => {
728730
return (
@@ -749,9 +751,11 @@ const Sponsors = () => {
749751
</div>
750752
)}
751753
{gold.length > 0 && (
752-
<div className="flex flex-col items-center gap-8 px-5 sm:flex-row sm:gap-16">
753-
<p className="font-mono text-sm uppercase">Gold:</p>
754-
<div className="flex flex-wrap items-center justify-center gap-10 sm:gap-12">
754+
<div className="flex w-full flex-col items-center gap-10 px-5 sm:flex-col sm:px-10">
755+
<div className="flex w-full items-center justify-center border-b py-2 sm:justify-start">
756+
<p className="font-mono text-sm uppercase">Gold Sponsors</p>
757+
</div>
758+
<div className="flex flex-wrap items-center justify-center gap-10 sm:gap-16">
755759
{gold.map((s) => {
756760
return (
757761
<Link
@@ -776,8 +780,10 @@ const Sponsors = () => {
776780
</div>
777781
)}
778782
{silver.length > 0 && (
779-
<div className="flex flex-col items-center gap-8 px-5 sm:flex-row sm:gap-16">
780-
<p className="font-mono text-sm uppercase">Silver:</p>
783+
<div className="flex w-full flex-col items-center gap-10 px-5 sm:flex-col sm:px-10">
784+
<div className="flex w-full items-center justify-center border-b py-2 sm:justify-start">
785+
<p className="font-mono text-sm uppercase">Silver Sponsors</p>
786+
</div>
781787
<div className="flex flex-wrap items-center justify-center gap-10 md:justify-start lg:gap-16">
782788
{silver.map(
783789
(s: {name: string; url: string; logo: React.JSX.Element}) => {
@@ -805,9 +811,11 @@ const Sponsors = () => {
805811
</div>
806812
)}
807813
{community.length > 0 && (
808-
<div className="flex flex-col items-center gap-8 px-5 sm:flex-row sm:gap-16 sm:px-10">
809-
<p className="w-20 font-mono text-sm uppercase">Community:</p>
810-
<div className="flex flex-wrap items-center justify-center gap-8 sm:justify-start sm:gap-x-16 sm:gap-y-10">
814+
<div className="flex flex-col items-center gap-5 px-5 sm:flex-col sm:px-10">
815+
<div className="flex w-full items-center justify-center border-b py-2 sm:justify-start">
816+
<p className="font-mono text-sm uppercase">Community Sponsors</p>
817+
</div>
818+
<div className="flex flex-wrap items-center justify-center gap-8 sm:gap-x-16 sm:gap-y-5">
811819
{community.map(
812820
(s: {name: string; url: string; logo: React.JSX.Element}) => {
813821
return (
@@ -1040,7 +1048,7 @@ const sponsorsData = {
10401048
logo: (
10411049
<svg
10421050
xmlns="http://www.w3.org/2000/svg"
1043-
className="w-36"
1051+
className="w-40"
10441052
viewBox="0 0 90 28"
10451053
fill="none"
10461054
>
@@ -1060,7 +1068,7 @@ const sponsorsData = {
10601068
logo: (
10611069
<svg
10621070
xmlns="http://www.w3.org/2000/svg"
1063-
className="w-44"
1071+
className="w-48"
10641072
fill="none"
10651073
viewBox="0 0 298 64"
10661074
>
@@ -1312,7 +1320,7 @@ const sponsorsData = {
13121320
url: 'https://www.geldata.com/',
13131321
logo: (
13141322
<svg
1315-
className="w-18"
1323+
className="w-20"
13161324
viewBox="0 0 157 122"
13171325
fill="none"
13181326
xmlns="http://www.w3.org/2000/svg"

0 commit comments

Comments
 (0)