- Liquid glass effect on navbar/cards with backdrop-filter invert - Animated blob gradient background (SVG-based) - Portfolio section: scene-dark invert, show 5 items on home - How Work section: step flow with numbers + connecting lines - Hero: Decision snapshot replacing problem selector - About page: inverted background with contrast fixes - Fix parallax JS bundling via Astro - Fix navbar fixed positioning after liquid glass CSS - Submenu hover fix - Clean up removed legacy files/assets
17 lines
597 B
TypeScript
17 lines
597 B
TypeScript
export const mainNav = [
|
|
{ label: 'หน้าแรก', href: '/' },
|
|
{ label: 'บริการ', href: '/services' },
|
|
{ label: 'ผลงาน', href: '/portfolio' },
|
|
{ label: 'บทความ', href: '/blog' },
|
|
{ label: 'FAQ', href: '/faq' },
|
|
];
|
|
|
|
export const footerNav = [
|
|
{ label: 'เกี่ยวกับ', href: '/about' },
|
|
{ label: 'บริการ', href: '/services' },
|
|
{ label: 'ผลงาน', href: '/portfolio' },
|
|
{ label: 'ติดต่อ', href: '/contact' },
|
|
{ label: 'Privacy', href: '/privacy' },
|
|
{ label: 'Terms', href: '/terms' },
|
|
];
|