Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
25 lines
678 B
TypeScript
25 lines
678 B
TypeScript
import publicPagesData from '@/content/publicPages.json'
|
|
|
|
export interface PublicContactPage {
|
|
title: string
|
|
eyebrow: string
|
|
description: string
|
|
metaTitle: string
|
|
metaDescription: string
|
|
jsonLdName: string
|
|
phone: { label: string; display: string }
|
|
address: { label: string; display: string; locality: string; street: string }
|
|
hours: { label: string; display: string }
|
|
faq: { label: string; linkLabel: string; href: string }
|
|
form: {
|
|
nameLabel: string
|
|
mobileLabel: string
|
|
subjectLabel: string
|
|
messageLabel: string
|
|
submitLabel: string
|
|
successMessage: string
|
|
}
|
|
}
|
|
|
|
export const contactPage: PublicContactPage = publicPagesData.contact
|