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
25 changes: 19 additions & 6 deletions apps/web/app/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import GlassCard from "@/components/glassCard"
import IconCircle from "@/components/iconCircle"
import { siteConfig } from "@/config/site"
import { SponsorList, SponsorTiers } from "@/config/sponsors"
import Image from "next/image"
import Link from "next/link"

function Sponsor() {
Expand Down Expand Up @@ -84,13 +85,21 @@ function Footer() {
<div className="hidden w-full items-center justify-between lg:flex">
{/* Icon */}
<div className="flex items-center">
<img
src="/static/logo/kmutt-eng-smo-engoph-cpe-bmh-desktop-footer.webp"
<Image
src="/static/logo/LOGOS Desktop Footer.svg"
className="hidden 2xl:block"
alt="Organizers logo"
loading="lazy"
width={749}
height={66}
/>
<img
src="/static/logo/kmutt-eng-smo-engoph-cpe-bmh-tablet-footer.webp"
<Image
src="/static/logo/LOGOS Tablet Footer.svg"
className="hidden lg:block 2xl:hidden"
alt="Organizers logo"
loading="lazy"
width={749}
height={66}
/>
</div>
<div className="flex items-center gap-6 2xl:hidden">
Expand All @@ -117,9 +126,13 @@ function Footer() {
className="h-auto w-full max-w-[200px]"
/>
<div className="flex w-full items-center">
<img
src="/static/logo/kmutt-eng-smo-engoph-cpe-bmh-mobile-footer.webp"
<Image
src="/static/logo/LOGOS Mobile Footer.svg"
className="h-auto w-full"
alt="Organizers logo"
loading="lazy"
width={345}
height={34}
/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/config/site.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const siteConfig = {
name: "Bangmod Hackathon 2025 ได้เปิดรับสมัครเป็นที่เรียบร้อยแล้ว",
name: "Bangmod Hackathon 2025",
url: "https://bangmodhackathon.com",
ogImage: "https://bangmodhackathon.com/static/og.png",
description:
Expand Down
Loading