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
1 change: 1 addition & 0 deletions public/logos/dotnet-foundation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,29 @@ import Layout from '../layouts/Layout.astro';
</div>
</section>

<!-- .NET Foundation membership -->
<section class="py-24 px-6 sm:px-8">
<div class="max-w-4xl mx-auto text-center">
<a
href="https://dotnetfoundation.org/projects/project-detail/dev-proxy"
target="_blank"
rel="noopener"
class="section-reveal inline-flex flex-col sm:flex-row items-center gap-6 sm:gap-8 rounded-2xl border p-8 sm:p-10 transition-all duration-300 hover:border-purple-500/50 hover:shadow-[0_0_40px_rgba(168,85,247,0.1)] no-underline"
style="background: var(--bg-secondary); border-color: var(--border-primary);"
>
<img
src={`${import.meta.env.BASE_URL}logos/dotnet-foundation.svg`}
alt=".NET Foundation logo"
class="h-20 w-20 shrink-0"
/>
<div class="text-center sm:text-left">
<p class="text-lg font-semibold mb-1" style="color: var(--text-primary);">Proud member of the .NET Foundation</p>
<p class="text-sm" style="color: var(--text-muted);">Dev Proxy is a community-maintained open source project supported by the .NET Foundation.</p>
</div>
</a>
</div>
</section>

<!-- Final CTA — bold, cinematic -->
<section class="py-32 px-6 sm:px-8 relative overflow-hidden">
<div class="absolute inset-0 pointer-events-none" aria-hidden="true">
Expand Down