Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/components/TorontoCloudSummitDeveloper2026.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { describe, it, expect } from "vitest";
import { websiteCredits } from "../lib/content";

describe("Website Credits Unit Tests for Toronto Cloud Summit (#142)", () => {
it("should verify that website credits array contains exactly Ahmad and Vincent with correct profiles", () => {
expect(websiteCredits).toBeDefined();

expect(websiteCredits.length).toBe(2);

expect(websiteCredits[0].name).toBe("Ahmad");
expect(websiteCredits[0].link).toBe(
"https://www.linkedin.com/in/ahmad-salempoor/",
);

expect(websiteCredits[1].name).toBe("Vincent");
expect(websiteCredits[1].link).toBe(
"https://www.linkedin.com/in/vincent-vincent-360b71104/",
);
});
});
16 changes: 15 additions & 1 deletion src/lib/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,10 @@ export interface VenueLogisticsSectionNewVersion {
}

/** Footer line: Website by … — optional LinkedIn per name (same pattern as aws-community-day). */
export const websiteCredits: Array<{ name: string; link: string | null }> = [
export const websiteCredits2026_Vancouver: Array<{
name: string;
link: string | null;
}> = [
{
name: "Nichanun (Luck)",
link: "https://www.linkedin.com/in/nichanun-pong/",
Expand All @@ -433,6 +436,17 @@ export const websiteCredits: Array<{ name: string; link: string | null }> = [
},
];

export const websiteCredits: Array<{ name: string; link: string | null }> = [
{
name: "Ahmad",
link: "https://www.linkedin.com/in/ahmad-salempoor/",
},
{
name: "Vincent",
link: "https://www.linkedin.com/in/vincent-vincent-360b71104/",
},
];

// Helper function to get footer content with city-specific ticket URL
export function getFooterContent(city: City) {
return {
Expand Down