diff --git a/src/assets/RADV_Canada_event.webp b/src/assets/RADV_Canada_event.webp deleted file mode 100644 index 98d6399..0000000 Binary files a/src/assets/RADV_Canada_event.webp and /dev/null differ diff --git a/src/assets/RADV_Canada_logo.webp b/src/assets/RADV_Canada_logo.webp deleted file mode 100644 index 1abb222..0000000 Binary files a/src/assets/RADV_Canada_logo.webp and /dev/null differ diff --git a/src/components/Conferences.astro b/src/components/Conferences.astro deleted file mode 100644 index 22e044c..0000000 --- a/src/components/Conferences.astro +++ /dev/null @@ -1,213 +0,0 @@ ---- -import reactAdvancedImage from "../assets/RADV_Canada_event.webp"; - -const conferences = [ - { - name: "React Advanced Canada", - tagline: - "React Advanced Canada lands in Toronto 🇨🇦 Join us on March 24 & 26 for 50+ talks, deep technical insights, and networking with some of the brightest minds in the industry.", - dates: "March 24 & 26, 2026", - location: "Toronto & Online", - discountCode: "ForwardJS", - url: "https://reactadvanced.com/canada/", - image: reactAdvancedImage, - imageAlt: "React Advanced Canada Logo", - }, -]; ---- - - - - PARTNER CONFERENCES - - { - conferences.map((conference) => ( - - - - - - - - - {conference.name} - {conference.tagline} - - - - When: - {conference.dates} - - - Where: - {conference.location} - - - - - Discount Code: - {conference.discountCode} - - - - Learn More & Register - - - - )) - } - - - - - diff --git a/src/components/Sponsors.astro b/src/components/Sponsors.astro index d2d5a5e..ac1a7f4 100644 --- a/src/components/Sponsors.astro +++ b/src/components/Sponsors.astro @@ -7,7 +7,6 @@ import Jetbrains from "../assets/jetbrains.svg"; import Teksystems from "../assets/teksystems.svg"; import Shopify from "../assets/shopify.svg"; import InvestOttawa from "../assets/investottawa.svg"; -import ReactAdvancedCanada from "../assets/RADV_Canada_logo.webp"; const sponsors = [ { @@ -35,11 +34,6 @@ const sponsors = [ logo: Jetbrains, href: "https://jetbrains.com", }, - { - name: "React Advanced Canada", - logo: ReactAdvancedCanada, - href: "https://reactadvanced.com/canada/", - }, ]; --- @@ -106,7 +100,7 @@ const sponsors = [ display: flex; flex-direction: column; gap: var(--gap); - max-width: 1440px; + max-width: 1005px; margin: auto; } @@ -118,7 +112,7 @@ const sponsors = [ .marquee__hidden { display: none; - @media screen and (max-width: 1440px) { + @media screen and (max-width: 1005px) { display: flex; } } @@ -131,7 +125,7 @@ const sponsors = [ gap: 16px; animation: none; - @media screen and (max-width: 1440px) { + @media screen and (max-width: 1005px) { animation: scroll 12s linear infinite; } } diff --git a/src/pages/index.astro b/src/pages/index.astro index 4da30da..3462f33 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,7 +1,7 @@ --- import Events from "../components/Events.astro"; import Hero from "../components/Hero.astro"; -import Conferences from "../components/Conferences.astro"; +// import Conferences from "../components/Conferences.astro"; import Sponsors from "../components/Sponsors.astro"; import Layout from "../layouts/Layout.astro"; --- @@ -10,5 +10,4 @@ import Layout from "../layouts/Layout.astro"; -
{conference.tagline}