Refresh Astro frontend implementation including new pages (Portfolio, Teams, Services), components, and styling updates.
25 lines
854 B
Plaintext
25 lines
854 B
Plaintext
---
|
||
/**
|
||
* Marketing Solutions Page - 行銷方案頁面
|
||
* Pixel-perfect implementation based on Webflow design
|
||
*/
|
||
import Layout from '../layouts/Layout.astro'
|
||
import SolutionsHero from '../sections/SolutionsHero.astro'
|
||
import ServicesList from '../sections/ServicesList.astro'
|
||
|
||
// Metadata for SEO
|
||
const title = '行銷解決方案 | 恩群數位行銷'
|
||
const description = '恩群數位行銷提供全方位的數位行銷服務,包括 Google Ads、社群代操、論壇行銷、網紅行銷、網站設計等,協助您的品牌在數位時代脫穎而出。'
|
||
---
|
||
|
||
<Layout title={title} description={description}>
|
||
<!-- Hero Section -->
|
||
<SolutionsHero
|
||
title="行銷解決方案"
|
||
subtitle="提供全方位的數位行銷服務,協助您的品牌在數位時代脫穎而出"
|
||
/>
|
||
|
||
<!-- Services List -->
|
||
<ServicesList />
|
||
</Layout>
|