Files
dealplustech/src/pages/services/index.astro
Kunthawat Greethong d092905e57 🎨 Fix: Add Header and Footer to all pages + standardize colors
MAJOR FIX - Pages were missing Header and Footer components:
 Added Header import to all pages
 Added Footer import to all pages
 Added <Header /> and <Footer /> components
 Changed custom colors to standard Tailwind (green-600, gray-*)
 Fixed: about-us, services, products, blog pages

COLOR SCHEME:
- primary-600 → green-600 (trust, growth)
- secondary-900 → gray-900 (professional)
- secondary-800 → gray-800
- secondary-600 → gray-600
- secondary-200 → gray-200

All pages now show proper Header navigation and Footer with links!
2026-03-09 22:34:36 +07:00

21 lines
745 B
Plaintext

---
import BaseLayout from '../../layouts/BaseLayout.astro';
import Header from '../../components/Header.astro';
import Footer from '../../components/Footer.astro';
import FloatingContact from '../../components/FloatingContact.astro';
---
<BaseLayout title="บริการ" description="บริการของเรา">
<Header />
<main class="pt-32 pb-16 bg-gray-50">
<div class="container mx-auto px-4">
<h1 class="section-title text-center mb-4">บริการของเรา</h1>
<p class="section-subtitle text-center mb-12">บริการครบวงจรสำหรับโครงการของคุณ</p>
</div>
</main>
<Footer />
<FloatingContact />
</BaseLayout>