Skip to content

Commit 4f2aa1f

Browse files
authored
chore: Removed conferences because they are no longer happening (#35)
1 parent cdf08fc commit 4f2aa1f

File tree

5 files changed

+4
-224
lines changed

5 files changed

+4
-224
lines changed

src/assets/RADV_Canada_event.webp

-112 KB
Binary file not shown.

src/assets/RADV_Canada_logo.webp

-16.8 KB
Binary file not shown.

src/components/Conferences.astro

Lines changed: 0 additions & 213 deletions
This file was deleted.

src/components/Sponsors.astro

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import Jetbrains from "../assets/jetbrains.svg";
77
import Teksystems from "../assets/teksystems.svg";
88
import Shopify from "../assets/shopify.svg";
99
import InvestOttawa from "../assets/investottawa.svg";
10-
import ReactAdvancedCanada from "../assets/RADV_Canada_logo.webp";
1110
1211
const sponsors = [
1312
{
@@ -35,11 +34,6 @@ const sponsors = [
3534
logo: Jetbrains,
3635
href: "https://jetbrains.com",
3736
},
38-
{
39-
name: "React Advanced Canada",
40-
logo: ReactAdvancedCanada,
41-
href: "https://reactadvanced.com/canada/",
42-
},
4337
];
4438
---
4539

@@ -106,7 +100,7 @@ const sponsors = [
106100
display: flex;
107101
flex-direction: column;
108102
gap: var(--gap);
109-
max-width: 1440px;
103+
max-width: 1005px;
110104
margin: auto;
111105
}
112106

@@ -118,7 +112,7 @@ const sponsors = [
118112

119113
.marquee__hidden {
120114
display: none;
121-
@media screen and (max-width: 1440px) {
115+
@media screen and (max-width: 1005px) {
122116
display: flex;
123117
}
124118
}
@@ -131,7 +125,7 @@ const sponsors = [
131125
gap: 16px;
132126
animation: none;
133127

134-
@media screen and (max-width: 1440px) {
128+
@media screen and (max-width: 1005px) {
135129
animation: scroll 12s linear infinite;
136130
}
137131
}

src/pages/index.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import Events from "../components/Events.astro";
33
import Hero from "../components/Hero.astro";
4-
import Conferences from "../components/Conferences.astro";
4+
// import Conferences from "../components/Conferences.astro";
55
import Sponsors from "../components/Sponsors.astro";
66
import Layout from "../layouts/Layout.astro";
77
---
@@ -10,5 +10,4 @@ import Layout from "../layouts/Layout.astro";
1010
<Hero />
1111
<Sponsors />
1212
<Events />
13-
<Conferences />
1413
</Layout>

0 commit comments

Comments
 (0)