Skip to content
Merged
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
Binary file removed src/assets/RADV_Canada_event.webp
Binary file not shown.
Binary file removed src/assets/RADV_Canada_logo.webp
Binary file not shown.
213 changes: 0 additions & 213 deletions src/components/Conferences.astro

This file was deleted.

12 changes: 3 additions & 9 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
{
Expand Down Expand Up @@ -35,11 +34,6 @@ const sponsors = [
logo: Jetbrains,
href: "https://jetbrains.com",
},
{
name: "React Advanced Canada",
logo: ReactAdvancedCanada,
href: "https://reactadvanced.com/canada/",
},
];
---

Expand Down Expand Up @@ -106,7 +100,7 @@ const sponsors = [
display: flex;
flex-direction: column;
gap: var(--gap);
max-width: 1440px;
max-width: 1005px;
margin: auto;
}

Expand All @@ -118,7 +112,7 @@ const sponsors = [

.marquee__hidden {
display: none;
@media screen and (max-width: 1440px) {
@media screen and (max-width: 1005px) {
display: flex;
}
}
Expand All @@ -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;
}
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -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";
---
Expand All @@ -10,5 +10,4 @@ import Layout from "../layouts/Layout.astro";
<Hero />
<Sponsors />
<Events />
<Conferences />
</Layout>