Skip to content

スポンサーセクションを追加 #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 29, 2025
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
84 changes: 84 additions & 0 deletions 2025/src/components/Sponsors/companies.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<div class="mb-10">
<h3 class="mb-6 text-center text-xl font-semibold md:text-2xl">
企業スポンサー
</h3>
<div class="space-y-10">
<div class="space-y-6">
<h4 class="text-center text-lg font-medium">プラチナ</h4>
<div class="grid grid-cols-1 justify-items-center gap-8 md:grid-cols-2">
<div class="flex flex-col items-center">
<div class="mb-3 flex h-24 items-center justify-center md:h-32">
<img alt="Acme Inc." class="max-h-full max-w-full object-contain" />
</div>
<h4 class="text-base font-medium text-gray-800 md:text-lg">
Acme Inc.
</h4>
</div>
<div class="flex flex-col items-center">
<div class="mb-3 flex h-24 items-center justify-center md:h-32">
<img alt="TechCorp" class="max-h-full max-w-full object-contain" />
</div>
<h4 class="text-base font-medium text-gray-800 md:text-lg">
TechCorp
</h4>
</div>
</div>
</div>
<div class="space-y-6">
<h4 class="text-center text-lg font-medium">ゴールド</h4>
<div class="grid grid-cols-2 justify-items-center gap-6 md:grid-cols-3">
<div class="flex flex-col items-center">
<div class="mb-2 flex h-20 items-center justify-center md:h-24">
<img
alt="DevSolutions"
class="max-h-full max-w-full object-contain"
/>
</div>
<h4 class="text-sm font-medium text-gray-800 md:text-base">
DevSolutions
</h4>
</div>
<div class="flex flex-col items-center">
<div class="mb-2 flex h-20 items-center justify-center md:h-24">
<img
alt="CodeMasters"
class="max-h-full max-w-full object-contain"
/>
</div>
<h4 class="text-sm font-medium text-gray-800 md:text-base">
CodeMasters
</h4>
</div>
</div>
</div>
<div class="space-y-6">
<h4 class="text-center text-lg font-medium">シルバー</h4>
<div class="grid grid-cols-3 justify-items-center gap-4 md:grid-cols-4">
<div class="flex flex-col items-center">
<div class="mb-2 flex h-12 items-center justify-center md:h-16">
<img alt="ByteWorks" class="max-h-full max-w-full object-contain" />
</div>
<h4 class="text-center text-xs font-medium text-gray-800 md:text-sm">
ByteWorks
</h4>
</div>
<div class="flex flex-col items-center">
<div class="mb-2 flex h-12 items-center justify-center md:h-16">
<img alt="EditPro" class="max-h-full max-w-full object-contain" />
</div>
<h4 class="text-center text-xs font-medium text-gray-800 md:text-sm">
EditPro
</h4>
</div>
<div class="flex flex-col items-center">
<div class="mb-2 flex h-12 items-center justify-center md:h-16">
<img alt="VimTools" class="max-h-full max-w-full object-contain" />
</div>
<h4 class="text-center text-xs font-medium text-gray-800 md:text-sm">
VimTools
</h4>
</div>
</div>
</div>
</div>
</div>
Loading