Skip to content

Refactor: Improve Footer UI for Readability and Modern Aesthetics#150

Merged
Bukutsu merged 3 commits into
mainfrom
copilot/refactor-footer-ui-for-readability
Mar 29, 2026
Merged

Refactor: Improve Footer UI for Readability and Modern Aesthetics#150
Bukutsu merged 3 commits into
mainfrom
copilot/refactor-footer-ui-for-readability

Conversation

Copilot AI commented Mar 29, 2026

Copy link
Copy Markdown
Contributor

Footer had readability issues: text was too small (especially the copyright area), link spacing felt tight, top padding was excessive, and link groups used non-semantic structure.

Changes

  • Typography
    • Brand text: text-basetext-lg
    • Description text: text-smtext-base
    • Footer link group text: text-smtext-base
    • Bottom copyright row: text-xstext-base
  • Spacing: Top padding pt-24pt-20; link column spacing standardized to gap-4
  • Semantic HTML: Replaced bare <Link> stacks with <ul>/<li> wrappers for accessibility
  • Hover polish: Added hover:underline underline-offset-4 transition-colors duration-200 to footer links
// Before
<div className="flex flex-col gap-3">
  <span className="font-medium text-foreground">เมนู</span>
  <Link href="#" className="hover:text-primary transition-colors">บริการของเรา</Link>
  ...
</div>

// After
<div className="flex flex-col gap-4">
  <span className="font-medium text-foreground">เมนู</span>
  <ul className="flex flex-col gap-4">
    <li><Link href="#" className="hover:text-primary hover:underline underline-offset-4 transition-colors duration-200">บริการของเรา</Link></li>
    ...
  </ul>
</div>

Screenshot

Updated UI screenshot: https://github.com/user-attachments/assets/c4fff3ed-b89a-4654-bf53-e946ea6fc654

[!WARNING]


📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.

@vercel

vercel Bot commented Mar 29, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
fuen-jai Ready Ready Preview, Comment Mar 29, 2026 4:23pm

Copilot AI changed the title [WIP] Refactor footer UI for improved readability and aesthetics Refactor: Improve Footer UI for Readability and Modern Aesthetics Mar 29, 2026
Copilot AI requested a review from Bukutsu March 29, 2026 16:09
@psrisuphan
psrisuphan marked this pull request as ready for review March 29, 2026 16:13

@psrisuphan psrisuphan left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's go, morgan.

Repository owner deleted a comment from Bukutsu Mar 29, 2026
Repository owner deleted a comment from Bukutsu Mar 29, 2026
Repository owner deleted a comment from Copilot AI Mar 29, 2026
Repository owner deleted a comment from Copilot AI Mar 29, 2026
@withsutham

Copy link
Copy Markdown
Owner

สู้ ๆ นะมอร์แกนลูกพ่อ

Repository owner deleted a comment from Copilot AI Mar 29, 2026
Repository owner deleted a comment from Copilot AI Mar 29, 2026
Repository owner deleted a comment from Copilot AI Mar 29, 2026
Repository owner deleted a comment from Copilot AI Mar 29, 2026
@Bukutsu

Bukutsu commented Mar 29, 2026

Copy link
Copy Markdown
Collaborator

@copilot can you make it reasonable bigger

@withsutham

Copy link
Copy Markdown
Owner

ultrathick

Copilot AI commented Mar 29, 2026

Copy link
Copy Markdown
Contributor Author

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • example.supabase.co
    • Triggering command: /opt/hostedtoolcache/node/24.14.0/x64/bin/node /opt/hostedtoolcache/node/24.14.0/x64/bin/node /home/REDACTED/work/SE_KPS_68_2/SE_KPS_68_2/src/application/node_modules/next/dist/server/lib/start-server.js (dns block)
  • fonts.googleapis.com
    • Triggering command: /opt/hostedtoolcache/node/24.14.0/x64/bin/node /opt/hostedtoolcache/node/24.14.0/x64/bin/node /home/REDACTED/work/SE_KPS_68_2/SE_KPS_68_2/src/application/node_modules/next/dist/server/lib/start-server.js (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI requested a review from withsutham March 29, 2026 16:24
@Bukutsu
Bukutsu merged commit 1f30501 into main Mar 29, 2026
2 of 3 checks passed
@Bukutsu
Bukutsu deleted the copilot/refactor-footer-ui-for-readability branch March 29, 2026 16:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Refactor: Improve Footer UI for Readability and Modern Aesthetics

4 participants