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
Binary file removed public/images/rpkm/sponsor-banner.PNG
Binary file not shown.
Binary file added public/images/rpkm/sponsor/logo-ais.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/rpkm/sponsor/logo-gangnam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/rpkm/sponsor/logo-gulf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/rpkm/sponsor/logo-major.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/rpkm/sponsor/logo-pmcu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/rpkm/sponsor/logo-top-charoen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions src/components/common/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,45 @@ const footerGradient = bgGradient[variant].classes;
---

<footer class="text-xs">
<!-- Sponsor Banners -->
{
(variant === "rpkm_home" ||
variant === "rpkm_summary" ||
variant === "rpkm_workshops" ||
variant === "rpkm_rubpuen") && (
<div class="flex h-fit min-h-[120px] w-full flex-col items-center bg-white p-4 pb-6">
<p class="font-semibold text-black">PRESENTED BY</p>
<img
src="/images/rpkm/sponsor/logo-gangnam.png"
class="mt-2 mb-6 h-[60px] w-auto object-contain"
/>
<div class="flex h-[20px] w-fit max-w-full items-center justify-center gap-x-4">
<img
src="/images/rpkm/sponsor/logo-top-charoen.png"
class="h-full w-auto object-contain"
/>
<img
src="/images/rpkm/sponsor/logo-major.png"
class="h-[28px] w-auto object-contain"
/>
<img
src="/images/rpkm/sponsor/logo-gulf.png"
class="h-full w-auto object-contain"
/>
<img
src="/images/rpkm/sponsor/logo-ais.png"
class="h-full w-auto object-contain"
/>
<img
src="/images/rpkm/sponsor/logo-pmcu.png"
class="h-full w-auto object-contain"
/>
</div>
</div>
)
}

<!-- ISD -->
<div
class={cn(
"flex w-full flex-col items-center justify-center py-4 text-white",
Expand All @@ -45,6 +84,8 @@ const footerGradient = bgGradient[variant].classes;
<p>Student Government Chulalongkorn University</p>
</div>
</div>

<!-- Contact -->
<div
class="flex w-full flex-col items-center justify-center bg-white py-4 text-black"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rpkm/components/group-picker.astro
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const member2 = groupData.memberCount > 2 ? groupData.users[2] : null;
type="button"
style="width: 260px; height: 48px;"
>
<p class="text-xl font-medium text-white">เป็นหัวแคลน</p>
<p class="text-xl font-medium text-white">สร้างห้อง</p>
</button>
</div>

Expand Down
Loading