Skip to content

Commit 3e56e66

Browse files
1kevgriffclaude
andauthored
Add Marathon Consulting and Issuetrak as silver sponsors (#19)
* Add Marathon Consulting and Issuetrak as silver sponsors Added two new silver tier sponsors to the Hampton Roads DevFest website: - Marathon Consulting (https://marathonus.com/) - Issuetrak (https://www.issuetrak.com/) Both sponsor logos were already present in the assets directory and have been integrated into the sponsors data file and homepage with proper imports and logo mappings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> * ✨ feat: Update event details with increased capacity and times Updated Hampton Roads DevFest 2026 event information: - Increased attendee capacity from 200+ to 250+ developers - Added event times: 8am to 6pm ET to main banner and sidebar These updates reflect the expanded capacity for the 2026 event and provide clear timing information for attendees and sponsors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]>
1 parent f90c9a9 commit 3e56e66

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

src/data/sponsors.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ export interface Sponsor {
88
}
99

1010
export const sponsors: Sponsor[] = [
11+
{
12+
name: "Marathon Consulting",
13+
logo: "marathon.png",
14+
url: "https://marathonus.com/",
15+
tier: "silver",
16+
},
17+
{
18+
name: "Issuetrak",
19+
logo: "issuetrak.png",
20+
url: "https://www.issuetrak.com/",
21+
tier: "silver",
22+
},
1123
{
1224
name: "OpenSearch",
1325
logo: "opensearch.png",

src/pages/index.astro

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import { speakers } from "../data/speakers";
77
import { sponsors } from "../data/sponsors";
88
import lionelSappImage from "../assets/speakers/lionel-sapp.jpeg";
99
import ryanCastilloImage from "../assets/speakers/ryan-castillo.jpeg";
10+
import issuetrakLogo from "../assets/sponsors/issuetrak.png";
11+
import marathonLogo from "../assets/sponsors/marathon.png";
1012
import opensearchLogo from "../assets/sponsors/opensearch.png";
1113
import swiftkickLogo from "../assets/sponsors/swiftkick.png";
1214
@@ -26,6 +28,8 @@ const speakerImages: Record<string, any> = {
2628
};
2729
2830
const sponsorLogos: Record<string, any> = {
31+
"issuetrak.png": issuetrakLogo,
32+
"marathon.png": marathonLogo,
2933
"opensearch.png": opensearchLogo,
3034
"swiftkick.png": swiftkickLogo,
3135
};
@@ -222,7 +226,7 @@ const sponsorsByTier = {
222226
Hampton Roads DevFest 2026
223227
</h1>
224228
<p class="mt-4 text-xl md:text-2xl text-center text-teal-600 font-bold">
225-
SAVE THE DATE: Feb 27th, 2026 - Virginia Beach, VA
229+
SAVE THE DATE: Feb 27th, 2026 | 8am to 6pm ET | Virginia Beach, VA
226230
</p>
227231

228232
<!-- Dual Hero CTAs -->
@@ -252,7 +256,7 @@ const sponsorsByTier = {
252256
<div class="flex flex-col md:flex-row justify-between mb-4">
253257
<div class="flex-1">
254258
<h2 class="text-3xl font-bold text-gray-800 mb-2">Get Your Tickets</h2>
255-
<p class="text-lg text-gray-600">Join 200+ local developers at Hampton Roads DevFest 2026</p>
259+
<p class="text-lg text-gray-600">Join 250+ local developers at Hampton Roads DevFest 2026</p>
256260
</div>
257261
</div>
258262
<div class="bg-white rounded-lg p-6 card-shadow">
@@ -392,7 +396,7 @@ const sponsorsByTier = {
392396
Interested in Sponsoring Hampton Roads DevFest 2026?
393397
</h3>
394398
<p class="text-gray-700 mb-6 text-lg">
395-
Help us make tech education accessible to our community while showcasing your organization to 200+ local developers.
399+
Help us make tech education accessible to our community while showcasing your organization to 250+ local developers.
396400
</p>
397401
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
398402
<a
@@ -621,6 +625,7 @@ const sponsorsByTier = {
621625
<div>
622626
<p class="font-semibold">Date</p>
623627
<p class="text-teal-100">Feb 27th, 2026</p>
628+
<p class="text-teal-100 text-sm">8am to 6pm ET</p>
624629
</div>
625630
</div>
626631
<div class="flex items-start gap-3">
@@ -634,7 +639,7 @@ const sponsorsByTier = {
634639
<span class="text-2xl">👥</span>
635640
<div>
636641
<p class="font-semibold">Community</p>
637-
<p class="text-teal-100">200+ Developers</p>
642+
<p class="text-teal-100">250+ Developers</p>
638643
</div>
639644
</div>
640645
</div>
@@ -655,7 +660,7 @@ const sponsorsByTier = {
655660
<ul class="space-y-2 mb-4 text-sm text-gray-700">
656661
<li class="flex items-start gap-2">
657662
<span class="text-teal-600 font-bold">✓</span>
658-
<span>Brand visibility to 200+ developers</span>
663+
<span>Brand visibility to 250+ developers</span>
659664
</li>
660665
<li class="flex items-start gap-2">
661666
<span class="text-teal-600 font-bold">✓</span>

0 commit comments

Comments
 (0)