From 0e0e57098b97dc3e981e83e95e40eaf6e579ad9a Mon Sep 17 00:00:00 2001 From: Shane Rosenthal Date: Mon, 20 Apr 2026 15:54:07 -0400 Subject: [PATCH 1/2] Add partner prospectus page for The Vibes event Adds a new /the-vibes-prospectus route and Blade view with partnership tier details ($1,000 / $500 / $250), audience info, and contact details for potential sponsors of the first NativePHP in-person meetup. Co-Authored-By: Claude Opus 4.6 --- .../views/the-vibes-prospectus.blade.php | 296 ++++++++++++++++++ routes/web.php | 1 + 2 files changed, 297 insertions(+) create mode 100644 resources/views/the-vibes-prospectus.blade.php diff --git a/resources/views/the-vibes-prospectus.blade.php b/resources/views/the-vibes-prospectus.blade.php new file mode 100644 index 00000000..31c1169a --- /dev/null +++ b/resources/views/the-vibes-prospectus.blade.php @@ -0,0 +1,296 @@ + +
+ + {{-- ═══ HERO / COVER ═══ --}} +
+

+ PARTNER PROSPECTUS · 2026 +

+ +

+ The + Vibes +

+ +

+ The First NativePHP In-Person Meetup +

+ +
+ July 30, 2026 · Boston, MA · 100 Developers +
+ +

+ Loft on Two · One Financial Center · 9 AM – 4 PM +

+

+ An intimate, community-powered gathering for the NativePHP community. +

+

+ + View the event page → + +

+
+ + {{-- ═══ WHY PARTNER ═══ --}} +
+

+ Why Partner With + The Vibes? +

+
+ +

+ The Vibes is the first-ever in-person NativePHP meetup — a curated, single-day gathering + for 100 passionate Laravel and PHP developers to connect, collaborate, and celebrate the + community. It's intimate, it's exclusive, and it's the perfect environment to get in front + of engaged developers. +

+ + {{-- Stats --}} +
+
+
+ 100 + Developers +
+

Intimate & exclusive. Real conversations, not small talk.

+
+
+
+ 1 + Day Event +
+

Focused, high-energy, and designed for meaningful connection.

+
+
+
+ 1st + Ever +
+

The inaugural event. Be part of something from the start.

+
+
+ + {{-- Who Attends --}} +

Who Attends

+
+
    +
  • + + Senior Laravel & PHP developers +
  • +
  • + + Engineering leads and CTOs from startups to enterprise +
  • +
  • + + Open-source maintainers and contributors +
  • +
  • + + Agency owners and freelance developers +
  • +
  • + + Developer advocates and community builders +
  • +
+ + {{-- What's Included --}} +

What's Included for Attendees

+
+
    +
  • + + Catered local Boston food, snacks & drinks all day +
  • +
  • + + Community networking in an intimate 100-person setting +
  • +
  • + + Open collaboration space for hacking and pairing +
  • +
  • + + Sponsor surprises and exclusive giveaways +
  • +
+
+ + {{-- ═══ PARTNERSHIP TIERS ═══ --}} +
+

Partnership Tiers

+

Choose the level that fits your goals. Limited spots ensure maximum visibility.

+
+ +
+ {{-- Headline Partner --}} +
+

Headline Partner

+

$1,000

+
5 spots
+ +
+ +
    +
  • + + 5 event tickets included +
  • +
  • + + Logo on The Vibes website +
  • +
  • + + Logo in The Vibes newsletter +
  • +
  • + + Premium brand visibility +
  • +
  • + + First pick of table/booth space +
  • +
+
+ + {{-- Supporting Partner --}} +
+

Supporting Partner

+

$500

+
10 spots
+ +
+ +
    +
  • + + 2 event tickets included +
  • +
  • + + Logo on The Vibes website +
  • +
  • + + Logo in The Vibes newsletter +
  • +
  • + + Community recognition +
  • +
+
+ + {{-- Community Partner --}} +
+

Community Partner

+

$250

+
20 spots
+ +
+ +
    +
  • + + 1 event ticket included +
  • +
  • + + Logo on The Vibes website +
  • +
  • + + Support the community +
  • +
+
+
+ + {{-- All Partners --}} +
+

All Partners Receive:

+
    +
  • + + Recognition during The Vibes event day +
  • +
  • + + Direct access to 100 engaged Laravel/PHP developers +
  • +
  • + + Association with the NativePHP and Laravel community +
  • +
+
+
+ + {{-- ═══ CONTACT / CTA ═══ --}} +
+

Let's Make

+

The Vibes Happen

+
+ +

+ Your partnership helps us bring together 100 passionate developers + for an unforgettable day of community, collaboration, and good vibes. +

+ + {{-- Contact Card --}} +
+

Get In Touch

+ +

Email

+

+ sponsors@nativephp.com +

+ +

Event Page

+

+ nativephp.com/the-vibes +

+
+ + {{-- Quick Overview Table --}} +
+

Partnership Overview

+ + + + + + + + + + + + + + + + + + + + + +
Headline Partner$1,0005 spots5 tickets + logo on site & newsletter
Supporting Partner$50010 spots2 tickets + logo on site & newsletter
Community Partner$25020 spots1 ticket + logo on site
+
+ +

+ NativePHP · The Vibes 2026 · Presented by Bifrost Technology, LLC +

+
+ +
+
diff --git a/routes/web.php b/routes/web.php index 290ed99b..17bfe820 100644 --- a/routes/web.php +++ b/routes/web.php @@ -167,6 +167,7 @@ Route::redirect('build-my-app', '/consulting', 301); Route::view('consulting', 'consulting')->name('consulting'); Route::view('the-vibes', 'the-vibes')->name('the-vibes'); +Route::view('the-vibes-prospectus', 'the-vibes-prospectus')->name('the-vibes-prospectus'); // Public plugin directory routes Route::middleware(EnsureFeaturesAreActive::using(ShowPlugins::class))->group(function (): void { From 438e78c78f2426dab72ab319606f212421c4b55d Mon Sep 17 00:00:00 2001 From: Simon Hamp Date: Tue, 21 Apr 2026 16:55:12 +0100 Subject: [PATCH 2/2] Update partner tier details on The Vibes prospectus page - Improve contrast of "5 spots" pill text in light mode - Replace "Logo in The Vibes newsletter" with email/post mentions - Remove "First pick of table/booth space" from Headline tier - Rename "Community recognition" to "Standard brand visibility" - Add detail to "Premium brand visibility" benefit Co-Authored-By: Claude Opus 4.6 --- resources/views/the-vibes-prospectus.blade.php | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/resources/views/the-vibes-prospectus.blade.php b/resources/views/the-vibes-prospectus.blade.php index 31c1169a..568317a1 100644 --- a/resources/views/the-vibes-prospectus.blade.php +++ b/resources/views/the-vibes-prospectus.blade.php @@ -133,7 +133,7 @@

Headline Partner

$1,000

-
5 spots
+
5 spots

@@ -148,15 +148,11 @@
  • - Logo in The Vibes newsletter + Mentions in pre- and post-event emails and posts
  • - Premium brand visibility -
  • -
  • - - First pick of table/booth space + Premium brand visibility (bigger logo, direct call-outs)
  • @@ -180,11 +176,11 @@
  • - Logo in The Vibes newsletter + Mentions in pre- and post-event emails and posts
  • - Community recognition + Standard brand visibility