From 6a82774743d04e35d91db72f1950bfd40a717f93 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 19 Dec 2024 13:31:09 +0000 Subject: [PATCH 1/8] feat: use href tel for phone numbers --- src/app/conf/2025/venue.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/conf/2025/venue.tsx b/src/app/conf/2025/venue.tsx index 5a6c60dc96..d4d08f2d46 100644 --- a/src/app/conf/2025/venue.tsx +++ b/src/app/conf/2025/venue.tsx @@ -9,20 +9,17 @@ const HOTELS = [ { name: "Mövenpick Hotel Amsterdam City Centre", link: "https://movenpick.accor.com/en/europe/netherlands/amsterdam/hotel-amsterdam.html?utm_source=google&utm_medium=local&utm_campaign=hotel-MHR-Amsterdam-city-center&y_source=1_MTUzNjI2OTgtNzE1LWxvY2F0aW9uLndlYnNpdGU%3D", - description: - "Piet Heinkade 11\n1019 BR Amsterdam, Netherlands\nPhone: +31 20 519 1200", + description: `Piet Heinkade 11\n1019 BR Amsterdam, Netherlands\nPhone: +31 20 519 1200`, }, { name: "Inntel Hotels Amsterdam Landmark", link: "https://www.inntelhotelsamsterdamlandmark.nl/", - description: - "VOC-kade 600\n1018 LG Amsterdam, Netherlands\n Phone: +31 20 227 2550", + description: `VOC-kade 600\n1018 LG Amsterdam, Netherlands\n Phone: +31 20 227 2550`, }, { name: "DoubleTree by Hilton Amsterdam Central Station", link: "https://www.hilton.com/en/hotels/amscsdi-doubletree-amsterdam-centraal-station/?SEO_id=GMB-EMEA-DI-AMSCSDI", - description: - "Oosterdoksstraat 4 \n1011 DK Amsterdam, Netherlands\nPhone: +31 20 530 0800", + description: `Oosterdoksstraat 4 \n1011 DK Amsterdam, Netherlands\nPhone: +31 20 530 0800`, }, ] @@ -93,7 +90,10 @@ export function Venue() { -

{hotel.description}

+

))} From d650eed0c12142dfea9ceb2654d1be45babc1609 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 19 Dec 2024 13:32:02 +0000 Subject: [PATCH 2/8] fix: hotel website links to open in new tab --- src/app/conf/2025/venue.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/conf/2025/venue.tsx b/src/app/conf/2025/venue.tsx index d4d08f2d46..19d25caf9e 100644 --- a/src/app/conf/2025/venue.tsx +++ b/src/app/conf/2025/venue.tsx @@ -84,6 +84,8 @@ export function Venue() { {hotel.name} From 6b65926da1931e79a33758506112f3db85a91c80 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 19 Dec 2024 13:38:01 +0000 Subject: [PATCH 3/8] feat: use

tag --- src/app/conf/2025/page.tsx | 9 ++++++--- src/app/conf/2025/venue.tsx | 10 +++++----- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx index 1045db11ad..42d33a96e5 100644 --- a/src/app/conf/2025/page.tsx +++ b/src/app/conf/2025/page.tsx @@ -32,9 +32,12 @@ function Hero() { GraphQLConf 2025 - - -{" "} - | Amsterdam, Netherlands + + + - + + | +
Amsterdam, Netherlands
diff --git a/src/app/conf/2025/venue.tsx b/src/app/conf/2025/venue.tsx index 19d25caf9e..d9fdf37187 100644 --- a/src/app/conf/2025/venue.tsx +++ b/src/app/conf/2025/venue.tsx @@ -51,11 +51,11 @@ export function Venue() {
))} From 7db0733ca59f4215b7ea979cdefd9ed7c3c53f98 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 19 Dec 2024 13:44:29 +0000 Subject: [PATCH 5/8] remove the translate animation --- src/app/conf/2025/faq.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/conf/2025/faq.tsx b/src/app/conf/2025/faq.tsx index cee170f4a1..28b99ab7c2 100644 --- a/src/app/conf/2025/faq.tsx +++ b/src/app/conf/2025/faq.tsx @@ -67,7 +67,7 @@ export function FAQ() { className="group border-b border-white/10 border-dashed" > - + {faq.question}

Date: Thu, 19 Dec 2024 13:47:26 +0000 Subject: [PATCH 6/8] fix: hero dates & address responsiveness --- src/app/conf/2025/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx index 42d33a96e5..030d685414 100644 --- a/src/app/conf/2025/page.tsx +++ b/src/app/conf/2025/page.tsx @@ -32,13 +32,15 @@ function Hero() { GraphQLConf 2025 - - - - - - | +

+
+ + - + +
+ |
Amsterdam, Netherlands
- +
Date: Thu, 19 Dec 2024 13:49:53 +0000 Subject: [PATCH 7/8] fix: hero styles --- src/app/conf/2025/page.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx index 030d685414..44e928320e 100644 --- a/src/app/conf/2025/page.tsx +++ b/src/app/conf/2025/page.tsx @@ -22,13 +22,7 @@ function Hero() {
-

+

GraphQLConf 2025

From 0519068d83bf196955f3f6cd143b657c5b67eb07 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 19 Dec 2024 14:11:26 +0000 Subject: [PATCH 8/8] fix: finally fix breakpoint issues for sponsor logos --- src/app/conf/2025/past-sponsors.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/conf/2025/past-sponsors.tsx b/src/app/conf/2025/past-sponsors.tsx index cc15a1e67e..fc25e16af2 100644 --- a/src/app/conf/2025/past-sponsors.tsx +++ b/src/app/conf/2025/past-sponsors.tsx @@ -61,7 +61,12 @@ function List({ linkClassName?: string }) { return ( -
+
{items.map(({ link, icon, name }, i) => (