From e79fb16aee2db07d1b05a64aff35f9de4ec2f0c1 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 11 Mar 2026 20:19:53 +0700 Subject: [PATCH] fix: Phase 1 - Remove social icons, fix footer, add brand blue color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes: - Remove social media icons from top bar (keep only email & phone) - Remove duplicate legal links from footer - Add Royal Blue (#1e40af) as secondary brand color - Fix gradient-primary to use dark text (not white) - Add gradient-brand and btn-brand components - Improve button color contrast Color scheme: - Primary: Yellow (#fed400) - Secondary Brand: Royal Blue (#1e40af) ← NEW - Accent: Blue-Purple gradient --- src/layouts/Layout.astro | 24 +----------------------- src/styles/global.css | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e5b38d7..dbacddb 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -56,7 +56,7 @@ const { title = 'MoreminiMore - ที่ปรึกษาองค์กร AI
- @@ -218,10 +200,6 @@ const { title = 'MoreminiMore - ที่ปรึกษาองค์กร AI
-

© {new Date().getFullYear()} MoreminiMore Co.,Ltd. สงวนลิขสิทธิ์

diff --git a/src/styles/global.css b/src/styles/global.css index 0949a51..29b73f0 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -10,6 +10,10 @@ --color-secondary: #000000; --color-secondary-light: #1a1a1a; + /* Brand Accent - Royal Blue */ + --color-brand-blue: #1e40af; + --color-brand-blue-hover: #1e3a8a; + /* AI/Tech Accent Colors */ --color-accent-blue: #2563eb; --color-accent-blue-hover: #1d4ed8; @@ -82,6 +86,11 @@ /* Gradient Backgrounds */ .gradient-primary { background: linear-gradient(135deg, var(--color-primary) 0%, #ffd700 100%); + color: var(--color-secondary); + } + + .gradient-brand { + background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-accent-blue) 100%); } .gradient-ai { @@ -108,6 +117,21 @@ box-shadow: 0 10px 20px rgba(254, 212, 0, 0.3); } + .btn-brand { + background-color: var(--color-brand-blue); + color: var(--color-white); + padding: 0.75rem 2rem; + border-radius: 9999px; + font-weight: 700; + transition: all 0.3s ease; + } + + .btn-brand:hover { + background-color: var(--color-brand-blue-hover); + transform: translateY(-2px); + box-shadow: 0 10px 20px rgba(30, 64, 175, 0.4); + } + .btn-secondary { background-color: var(--color-secondary); color: var(--color-white);