Initial commit: Next.js + Payload CMS for moreminimore-redesign
- Next.js 16 App Router + Payload CMS 3.82 - PostgreSQL via @payloadcms/db-postgres - All pages: Home, Services (4), About, Portfolio, Blog, Contact, FAQ - PDPA: CookieBanner, ConsentLogs API, Privacy Policy, Terms, Cookie Policy - SEO: sitemap, robots.txt, metadata exports, JSON-LD
This commit is contained in:
31
src/app/(frontend)/services/tech-consult/layout.tsx
Normal file
31
src/app/(frontend)/services/tech-consult/layout.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'บริการ Tech Consult | MoreminiMore - คำปรึกษาระบบ IT และ Cloud',
|
||||
description: 'บริการให้คำปรึกษาระบบ IT และ Cloud สำหรับธุรกิจ SMEs เลือกเครื่องมือที่เหมาะกับงบประมาณ',
|
||||
keywords: 'Tech Consult, ที่ปรึกษา IT, Cloud, Infrastructure, SMEs ไทย',
|
||||
openGraph: {
|
||||
title: 'บริการ Tech Consult | MoreminiMore - คำปรึกษาระบบ IT และ Cloud',
|
||||
description: 'บริการให้คำปรึกษาระบบ IT และ Cloud สำหรับธุรกิจ SMEs เลือกเครื่องมือที่เหมาะกับงบประมาณ',
|
||||
url: 'https://moreminimore.com/services/tech-consult',
|
||||
siteName: 'MoreminiMore',
|
||||
locale: 'th_TH',
|
||||
type: 'website',
|
||||
},
|
||||
twitter: {
|
||||
card: 'summary_large_image',
|
||||
title: 'บริการ Tech Consult | MoreminiMore - คำปรึกษาระบบ IT และ Cloud',
|
||||
description: 'บริการให้คำปรึกษาระบบ IT และ Cloud สำหรับธุรกิจ SMEs เลือกเครื่องมือที่เหมาะกับงบประมาณ',
|
||||
},
|
||||
alternates: {
|
||||
canonical: 'https://moreminimore.com/services/tech-consult',
|
||||
},
|
||||
}
|
||||
|
||||
export default function TechConsultLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return children
|
||||
}
|
||||
Reference in New Issue
Block a user