Skip to content

Commit 6f15d4a

Browse files
committed
chore: update footer links to reflect sponsors and partners, and enhance descriptions on pages
1 parent a727988 commit 6f15d4a

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

src/app/partners/page.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export default async function PartnersPage() {
2929
Partners
3030
</h1>
3131
<p className="text-base sm:text-lg md:text-xl text-white/90 max-w-3xl mx-auto">
32-
Meet the amazing partners supporting SINFO.
32+
Meet the fantastic partners and organisations that collaborate
33+
with SINFO. Their support through partnerships helps us deliver an
34+
unforgettable experience year after year.
3335
</p>
3436
</div>
3537
</div>

src/app/sponsors/page.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ export default async function SponsorsPage() {
1111
const event = await EventService.getLatest();
1212
const edition = event ? event.id : 33;
1313

14-
const companies = event
15-
? await CompanyService.getCompanies(edition.toString())
16-
: [];
14+
// const companies = event
15+
// ? await CompanyService.getCompanies(edition.toString())
16+
// : [];
17+
const companies: any[] = []; // Placeholder for companies data
1718

1819
if (!event || !companies) {
1920
return <BlankPageMessage message="Could not fetch companies data." />;
@@ -37,7 +38,9 @@ export default async function SponsorsPage() {
3738
Sponsors
3839
</h1>
3940
<p className="text-base sm:text-lg md:text-xl text-white/90 max-w-3xl mx-auto">
40-
Meet the amazing companies and organizations that sponsor SINFO.
41+
Meet the amazing sponsors that make SINFO shine. Their commitment
42+
help us deliver an unforgettable, free tech conference to over
43+
5,000 attendees every year.
4144
</p>
4245
</div>
4346
</div>
@@ -46,7 +49,7 @@ export default async function SponsorsPage() {
4649
<section className="py-12">
4750
<div className="max-w-7xl mx-auto px-6 space-y-10">
4851
{sponsors.length === 0 ? (
49-
<BlankPageMessage message="No sponsors to display at the moment." />
52+
<BlankPageMessage message="We currently have no sponsors to showcase. Please check back later to see the amazing companies supporting SINFO!" />
5053
) : (
5154
<>
5255
{maxSponsors.length > 0 && (

src/components/BottomNavbar/index.tsx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,13 @@ export default function Footer() {
4242
</Link>
4343
</li>
4444
<li>
45-
<Link href="/companies" className="hover:underline">
46-
Companies
45+
<Link href="/sponsors" className="hover:underline">
46+
Sponsors
47+
</Link>
48+
</li>
49+
<li>
50+
<Link href="/partners" className="hover:underline">
51+
Partners
4752
</Link>
4853
</li>
4954
<li>
@@ -104,6 +109,16 @@ export default function Footer() {
104109
TikTok
105110
</a>
106111
</li>
112+
<li>
113+
<a
114+
href="https://github.com/sinfo/"
115+
target="_blank"
116+
rel="noreferrer"
117+
className="hover:underline"
118+
>
119+
GitHub
120+
</a>
121+
</li>
107122
</ul>
108123
</div>
109124

0 commit comments

Comments
 (0)