Skip to content
Merged
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
10 changes: 7 additions & 3 deletions src/routes/join/sponsors/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import Row from "$lib/components/Row.svelte";
import Section from "$lib/components/Section.svelte";
import Info from "$lib/components/sponsors/Info.svelte";
import Stats from "$lib/components/sponsors/Stats.svelte";

Check warning on line 8 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

'Stats' is defined but never used
import Testimonial from "$lib/components/Testimonial.svelte";
import { listFormatter } from "$lib/utils/format";

Check warning on line 10 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

'listFormatter' is defined but never used
import { Perk, type PerkType } from "$lib/utils/schema";

export let data;
Expand All @@ -17,7 +17,7 @@
perks: PerkType[];
}

const tiers: SponsorTier[] = [

Check warning on line 20 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

'tiers' is assigned a value but never used
{
name: "Gold",
perks: [Perk.DIGITAL_BRANDING],
Expand Down Expand Up @@ -60,18 +60,20 @@

<Info
title="Check Out Our Work"
content="Read more about any of over 20 past products built as technical solutions spanning over 7 areas of impact and the domains of web engineering, mobile applications, and data science."
content="Read more about any of over 50 past products built as technical solutions spanning over 7 areas of impact and the domains of web engineering, mobile applications, AI, and data science."
to="/projects"
linkText="Learn More"
/>
</Section>

<!--
<Section color="var(--blue)" padding="60px">
<span class="wrap" id="by-the-numbers">
<h2>By the Numbers</h2>
<Stats />
</span>
</Section>
-->

<Section color="var(--gray-lighter)">
<Testimonial
Expand Down Expand Up @@ -113,17 +115,18 @@
</div>
<div>
<h4>Product Designer</h4>
1 per team
2 per team
</div>
<div>
<h4>Software Developer</h4>
4-5 per team
5 per team
</div>
</div>
</div></span
>
</Section>

<!--
<Section color="var(--blue)" padding="60px">
<span class="light-text wrap sponsor-perks">
<h2>Sponsorship Tiers</h2>
Expand Down Expand Up @@ -170,6 +173,7 @@
</div>
</span>
</Section>
-->

<Section padding="60px">
<h2>Where We Work</h2>
Expand Down Expand Up @@ -214,7 +218,7 @@
opacity: 80%;
}

.light-text {

Check warning on line 221 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".light-text"
color: #fff;
}

Expand All @@ -224,17 +228,17 @@
margin: 0 auto;
}

.sponsor-perks .tier {

Check warning on line 231 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".sponsor-perks .tier"
align-items: center;
}

.sponsor-perks .tier h3 {

Check warning on line 235 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".sponsor-perks .tier h3"
margin-top: 1rem;
font-size: 1.6rem;
margin-bottom: 0;
}

.sponsor-perks .tier ul {

Check warning on line 241 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".sponsor-perks .tier ul"
padding-left: 0;
list-style: none;
font-size: 1rem;
Expand All @@ -243,13 +247,13 @@
text-align: left;
}

.sponsor-perks .tier ul > li.disabled {

Check warning on line 250 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".sponsor-perks .tier ul > li.disabled"
opacity: 0.6;
user-select: none;
cursor: disabled;
}

.sponsor-perks .tier ul > li > .status {

Check warning on line 256 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector ".sponsor-perks .tier ul > li > .status"
user-select: none;
display: inline-block;
margin-right: 0.75em;
Expand Down Expand Up @@ -295,7 +299,7 @@
color: #fff;
}

#by-the-numbers {

Check warning on line 302 in src/routes/join/sponsors/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector "#by-the-numbers"
color: white;
}

Expand Down
Loading