feat: light theme page templates + integration with new content collections

- All 11 page templates rewritten for light theme
- index.astro: 8 sections (hero, stats yellow band, problem cards,
  services mega-grid, black pull-quote, blog preview, yellow CTA)
- about.astro: story + values (4 dark-icon cards) + process 4-step
- contact.astro: 4 channel picker cards + 8-field form (added budget field)
  + 3-step 'what happens next' + pre-submit FAQ + yellow final CTA
- faq.astro: dynamic category rendering from content/faq collection
  (5 categories, 20 Q&A) + tag cloud + 3 channel cards
- portfolio.astro: industry filter bar (sticky) + 9 items with new
  schema (industry, what_we_did, result fields) + 'ดีลที่เราเลือก' section
- services/index.astro: decision table (6 rows, scannable in 30s)
  + 3 pricing tiers (Starter/Business/Enterprise) + add-on chips
- services/[slug].astro: 4 service types with light hero + pricing +
  tech options + AI features + 6-FAQ per service
- blog/index.astro: featured + 4-card grid from content collection
- blog/[slug].astro: 2-column with sidebar (about, contact, related)
- privacy.astro + terms.astro: legal content, light theme
- All form posts go to setTimeout success (placeholder for backend wire)
This commit is contained in:
Macky
2026-06-03 14:15:33 +07:00
parent 00b0de2d9a
commit 0855e3d77b
11 changed files with 2311 additions and 4363 deletions

View File

@@ -2,103 +2,98 @@
import Base from '../layouts/Base.astro';
import Navigation from '../components/Navigation.astro';
import Footer from '../components/Footer.astro';
import { portfolioItems } from '../data/portfolio';
import PageHero from '../components/PageHero.astro';
import PortfolioCard from '../components/PortfolioCard.astro';
import { getCollection } from 'astro:content';
const portfolio = await getCollection('portfolio');
---
<Base title="ผลงาน | MoreminiMore - รับทำเว็บไซต์ SEO AI Chatbot">
<Base title="ผลงาน | MoreminiMore | รับทำเว็บไซต์ SEO AI Chatbot">
<Navigation />
<!-- =============================================
HERO SECTION - DARK THEME
============================================= -->
<section class="portfolio-hero">
<div class="hero-bg">
<div class="hero-grid"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="particles">
<div class="particle p-1"></div>
<div class="particle p-2"></div>
<div class="particle p-3"></div>
<div class="particle p-4"></div>
</div>
<div class="lines">
<div class="line line-1"></div>
<div class="line line-2"></div>
</div>
</div>
<PageHero
badge="9 โปรเจกต์ · 5 อุตสาหกรรม · ผลงานจริงทุกชิ้น"
title="เราส่งมอบให้ใคร มาบ้างแล้วบ้าง"
subtitle="โปรเจกต์จริง ลูกค้าจริง เว็บไซต์จริงที่ใช้งานอยู่ทุกวันนี้ — คลิกเข้าไปดูได้เลย"
/>
<!-- Industry Filter Bar -->
<section class="filter-section">
<div class="container">
<div class="hero-content">
<div class="hero-badge">
<span class="badge-dot"></span>
<span class="badge-text">ผลงานของเรา</span>
</div>
<h1 class="hero-title">
<span class="title-line">โปรเจกต์ที่</span>
<span class="title-accent">เราภาคภูมิใจ</span>
</h1>
<p class="hero-desc">
รวมผลงานพัฒนาเว็บไซต์และโปรเจกต์ที่เราภาคภูมิใจ
</p>
<div class="filter-bar">
<button class="filter-btn active" data-filter="all">ทั้งหมด ({portfolio.length})</button>
<button class="filter-btn" data-filter="🏭 โรงงาน">🏭 โรงงาน</button>
<button class="filter-btn" data-filter="💊 สินค้าอุปโภค">💊 สินค้าอุปโภค</button>
<button class="filter-btn" data-filter="⚖️ สำนักงานกฎหมาย">⚖️ สำนักงานกฎหมาย</button>
<button class="filter-btn" data-filter="📚 สถาบัน / การศึกษา">📚 สถาบัน / การศึกษา</button>
<button class="filter-btn" data-filter="📈 ที่ปรึกษาธุรกิจ">📈 ที่ปรึกษาธุรกิจ</button>
<button class="filter-btn" data-filter="🎨 Digital Agency">🎨 Digital Agency</button>
<button class="filter-btn" data-filter="🛒 E-commerce">🛒 E-commerce</button>
</div>
</div>
<div class="hero-wave">
<svg viewBox="0 0 1440 100" fill="none" preserveAspectRatio="none">
<path d="M0 50C240 100 480 0 720 50C960 100 1200 0 1440 50V100H0V50Z" fill="#ffffff"/>
</svg>
</div>
</section>
<!-- =============================================
PORTFOLIO GRID
============================================= -->
<section class="section portfolio-section">
<div class="container">
<div class="portfolio-grid">
{portfolioItems.map((item, index) => (
<article
class="portfolio-card"
data-category={item.category}
style={`--delay: ${index * 0.05}s`}
>
<div class="portfolio-image">
<img src={item.thumbnail} alt={item.name} loading="lazy" />
<div class="portfolio-overlay">
<a href={item.url || '#'} target="_blank" rel="noopener noreferrer" class="visit-btn">
เยี่ยมชมเว็บไซต์
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
</div>
<div class="portfolio-content">
<span class="portfolio-category">{item.category_label}</span>
<h3 class="portfolio-name">{item.name}</h3>
{item.description && <p class="portfolio-desc">{item.description}</p>}
</div>
</article>
{portfolio.map(item => (
<PortfolioCard
name={item.data.name}
url={item.data.url || '#'}
category={item.data.category}
category_label={item.data.category_label}
industry={item.data.industry}
thumbnail={item.data.thumbnail}
description={item.data.description}
what_we_did={item.data.what_we_did}
result={item.data.result}
/>
))}
</div>
</div>
</section>
<!-- =============================================
CTA SECTION
============================================= -->
<section class="section cta-section">
<!-- "ดีลที่เราเลือก" Section -->
<section class="section section-soft">
<div class="container">
<div class="section-header">
<span class="section-badge">ดีลที่เราเลือก</span>
<h2 class="section-title">
เรา <span class="highlight">เลือก</span> โปรเจกต์ที่ทำ — ไม่ใช่ทุกงานที่มา เรารับ
</h2>
</div>
<div class="reasons-grid">
<div class="reason-card">
<div class="reason-num">1</div>
<h3 class="reason-title">ธุรกิจที่พร้อมจริง ๆ</h3>
<p class="reason-desc">เราคุยกับเจ้าของธุรกิจก่อน ถ้าเป้าหมายยังไม่ชัด เราจะแนะนำให้รอก่อน ดีกว่าเสียเงินแล้วไม่ได้ผล</p>
</div>
<div class="reason-card">
<div class="reason-num">2</div>
<h3 class="reason-title">งบประมาณที่สมเหตุสมผล</h3>
<p class="reason-desc">เราไม่ได้ถูกที่สุด แต่ก็ไม่ได้แพงที่สุด ถ้าใครบอก "งบ 5,000 ทำเว็บได้ไหม" — เราแนะนำให้ไปฟรีแลนซ์ก่อน</p>
</div>
<div class="reason-card">
<div class="reason-num">3</div>
<h3 class="reason-title">ลูกค้าที่ฟัง</h3>
<p class="reason-desc">เราทำงานกับลูกค้าที่พร้อมฟังคำแนะนำ ไม่ใช่ลูกค้าที่บอก "ทำตามนี้เป๊ะ ๆ" แล้วผิดคาดทุกที</p>
</div>
</div>
</div>
</section>
<section class="section section-yellow cta-section">
<div class="container">
<div class="cta-content">
<h2 class="cta-title">อยากได้เว็บไซต์แบบนี้บ้าง?</h2>
<p class="cta-desc">ปรึกษาฟรี! เราพร้อมช่วยวิเคราะห์และออกแบบโซลูชันที่เหมาะกับคุณ</p>
<h2 class="cta-title">อยากเป็น <span class="highlight">ผลงานชิ้นต่อไป</span> ของเรา?</h2>
<p class="cta-desc">ถ้าธุรกิจคุณพร้อม เราพร้อม — คุยกันก่อน 30 นาที แล้วตัดสินใจเอง</p>
<div class="cta-actions">
<a href="/contact" class="btn btn-primary btn-lg">ปรึกษาฟรี</a>
<a href="tel:0809955945" class="btn btn-outline-dark btn-lg">080-995-5945</a>
<a href="/contact" class="btn btn-dark btn-lg">เริ่มโปรเจกต์ของคุณ →</a>
<a href="/services" class="btn btn-outline-dark btn-lg">ดูบริการที่เราทำ</a>
</div>
<p class="cta-reassurance">ไม่มี script · ไม่มี pressure · ตรงไปตรงมา</p>
</div>
</div>
</section>
@@ -106,395 +101,169 @@ import { portfolioItems } from '../data/portfolio';
<Footer />
</Base>
<script>
// Industry filter
const filterBtns = document.querySelectorAll('.filter-btn');
const cards = document.querySelectorAll('.portfolio-card');
filterBtns.forEach(btn => {
btn.addEventListener('click', () => {
filterBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
const filter = btn.getAttribute('data-filter');
cards.forEach(card => {
const industry = card.querySelector('.portfolio-industry')?.textContent || '';
if (filter === 'all' || industry.includes(filter)) {
(card as HTMLElement).style.display = '';
} else {
(card as HTMLElement).style.display = 'none';
}
});
});
});
</script>
<style>
/* =============================================
PORTFOLIO HERO
============================================= */
.portfolio-hero {
position: relative;
min-height: 50vh;
.filter-section {
background: var(--color-bg-alt);
padding: 20px 0;
border-top: 1px solid var(--color-gray-200);
border-bottom: 1px solid var(--color-gray-200);
position: sticky;
top: 70px;
z-index: 50;
}
.filter-bar {
display: flex;
align-items: center;
background: #0F172A;
overflow: hidden;
gap: 8px;
overflow-x: auto;
padding: 4px 0;
}
.filter-btn {
flex-shrink: 0;
padding: 8px 16px;
background: var(--color-white);
color: var(--color-gray-700);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-full);
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
}
.filter-btn:hover {
border-color: var(--color-primary);
color: var(--color-black);
}
.filter-btn.active {
background: var(--color-primary);
color: var(--color-black);
border-color: var(--color-primary);
}
.hero-bg {
position: absolute;
inset: 0;
overflow: hidden;
}
.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(254, 212, 0, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(254, 212, 0, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
}
.orb {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.4;
}
.orb-1 {
width: 300px;
height: 300px;
background: rgba(254, 212, 0, 0.3);
top: -50px;
right: 10%;
animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
width: 200px;
height: 200px;
background: rgba(254, 212, 0, 0.2);
bottom: 20%;
left: 5%;
animation: orbFloat2 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(50px, -30px) scale(1.15); }
}
.particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
position: absolute;
width: 4px;
height: 4px;
background: #fed400;
border-radius: 50%;
opacity: 0;
}
.p-1 { top: 30%; left: 15%; animation: particleFloat 7s ease-in-out infinite; }
.p-2 { top: 50%; left: 75%; animation: particleFloat 8s ease-in-out infinite; animation-delay: 2s; }
.p-3 { top: 70%; left: 30%; animation: particleFloat 6s ease-in-out infinite; animation-delay: 1s; }
.p-4 { top: 20%; left: 60%; animation: particleFloat 9s ease-in-out infinite; animation-delay: 3s; }
@keyframes particleFloat {
0% { opacity: 0; transform: translateY(50px) scale(0); }
20% { opacity: 0.8; }
80% { opacity: 0.8; }
100% { opacity: 0; transform: translateY(-50px) scale(1); }
}
.lines { position: absolute; inset: 0; overflow: hidden; }
.line {
position: absolute;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(254, 212, 0, 0.3), transparent);
animation: lineMove 12s linear infinite;
}
.line-1 { width: 50%; top: 35%; left: -50%; animation-delay: 0s; }
.line-2 { width: 40%; top: 65%; left: -40%; animation-delay: 6s; }
@keyframes lineMove {
0% { left: -50%; }
100% { left: 110%; }
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
padding: 80px 0 60px;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 10px 20px;
background: rgba(254, 212, 0, 0.15);
border: 1px solid rgba(254, 212, 0, 0.3);
border-radius: 100px;
margin-bottom: 24px;
}
.badge-dot {
width: 8px;
height: 8px;
background: #fed400;
border-radius: 50%;
}
.badge-text {
font-family: var(--font-display);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
color: #fed400;
}
.hero-title {
font-family: var(--font-display);
font-size: clamp(32px, 5vw, 52px);
font-weight: 900;
line-height: 1.1;
color: #ffffff;
margin-bottom: 16px;
}
.title-line {
display: block;
color: #ffffff;
}
.title-accent {
color: #fed400;
}
.hero-desc {
font-size: 18px;
color: rgba(255, 255, 255, 0.7);
max-width: 500px;
margin: 0 auto;
}
.hero-wave {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 80px;
z-index: 3;
}
.hero-wave svg {
width: 100%;
height: 100%;
}
/* =============================================
PORTFOLIO SECTION
============================================= */
.portfolio-section {
background: #ffffff;
padding: 80px 0;
}
.portfolio-section { background: var(--color-white); }
.section-soft { background: var(--color-bg-alt); }
.section-yellow { background: var(--color-primary); }
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
gap: 28px;
}
.portfolio-card {
background: #ffffff;
border: 2px solid #E2E8F0;
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
animation: fadeUp 0.6s ease backwards;
animation-delay: var(--delay);
}
.portfolio-card:hover {
border-color: #fed400;
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.portfolio-image {
position: relative;
aspect-ratio: 16/10;
overflow: hidden;
}
.portfolio-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-image img {
transform: scale(1.08);
}
.portfolio-overlay {
position: absolute;
inset: 0;
background: rgba(254, 212, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay {
opacity: 1;
}
.visit-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: #000000;
color: #ffffff;
padding: 14px 28px;
border-radius: 100px;
font-family: var(--font-display);
font-weight: 700;
font-size: 14px;
transition: transform 0.2s ease;
}
.visit-btn:hover {
transform: scale(1.05);
}
.visit-btn svg {
width: 18px;
height: 18px;
}
.portfolio-content {
padding: 24px;
}
.portfolio-category {
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
display: inline-block;
background: #F1F5F9;
color: #64748B;
padding: 4px 12px;
border-radius: 8px;
font-size: 11px;
background: var(--color-primary);
color: var(--color-black);
padding: 8px 20px;
border-radius: var(--radius-full);
font-size: 12px;
font-weight: 700;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 16px;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(28px, 4vw, 40px);
font-weight: 900;
line-height: 1.2;
color: var(--color-black);
}
.section-title .highlight { color: var(--color-primary-dark); }
.portfolio-name {
.reasons-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.reason-card {
background: var(--color-white);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-xl);
padding: 32px;
}
.reason-num {
display: inline-block;
width: 40px;
height: 40px;
background: var(--color-primary);
color: var(--color-black);
border-radius: 50%;
text-align: center;
line-height: 40px;
font-family: var(--font-display);
font-size: 18px;
font-weight: 900;
margin-bottom: 16px;
}
.reason-title {
font-family: var(--font-display);
font-size: 18px;
font-weight: 800;
color: #0F172A;
color: var(--color-black);
margin-bottom: 8px;
}
.portfolio-desc {
font-size: 14px;
color: #64748B;
.reason-desc {
font-size: 15px;
color: var(--color-gray-600);
line-height: 1.6;
}
/* =============================================
CTA SECTION
============================================= */
.cta-section {
background: #fed400;
padding: 80px 0;
}
.cta-content {
text-align: center;
}
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title {
font-family: var(--font-display);
font-size: clamp(28px, 4vw, 36px);
font-weight: 800;
color: #000000;
margin-bottom: 12px;
font-size: clamp(28px, 4vw, 44px);
font-weight: 900;
color: var(--color-black);
margin-bottom: 16px;
}
.cta-title .highlight { color: var(--color-black); text-decoration: underline; text-decoration-color: var(--color-black); text-underline-offset: 6px; text-decoration-thickness: 4px; }
.cta-desc {
font-size: 16px;
font-size: 18px;
color: rgba(0, 0, 0, 0.7);
margin-bottom: 28px;
margin-bottom: 32px;
}
.cta-actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 16px;
}
/* =============================================
BUTTONS
============================================= */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 28px;
font-family: var(--font-display);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.btn-primary {
background: #0F172A;
color: #ffffff;
}
.btn-primary:hover {
background: #1E293B;
}
.btn-outline-dark {
background: transparent;
color: #000000;
border: 2px solid #000000;
}
.btn-outline-dark:hover {
background: #000000;
color: #ffffff;
}
.btn-lg {
padding: 16px 32px;
.cta-reassurance {
font-size: 14px;
color: rgba(0, 0, 0, 0.6);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* =============================================
RESPONSIVE
============================================= */
@media (max-width: 1024px) {
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
.reasons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.portfolio-grid {
grid-template-columns: 1fr;
}
.cta-actions {
flex-direction: column;
}
.btn-lg {
width: 100%;
}
.portfolio-grid { grid-template-columns: 1fr; }
.cta-actions { flex-direction: column; }
.cta-actions .btn { width: 100%; justify-content: center; }
}
</style>
</style>