Files
marmarislocal/app/[locale]/add-business/page.tsx
T

75 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { getTranslations, setRequestLocale } from 'next-intl/server'
import { mockDb } from '@/lib/mockDb'
import BusinessForm from './BusinessForm'
interface AddBusinessPageProps {
params: Promise<{ locale: string }>
}
export default async function AddBusinessPage({ params }: AddBusinessPageProps) {
const { locale } = await params
setRequestLocale(locale)
const t = await getTranslations('forms')
const navT = await getTranslations('nav')
// Fetch categories and neighborhoods to populate form select options
const categories = await mockDb.getCategories()
const neighborhoods = await mockDb.getNeighborhoods()
const getLocalizedName = (obj: any) => {
if (!obj) return ''
return locale === 'ru' ? obj.nameRu : locale === 'en' ? obj.nameEn : obj.nameTr
}
const categoryOptions = categories.map(c => ({
value: c.id,
label: getLocalizedName(c)
}))
const neighborhoodOptions = neighborhoods.map(n => ({
value: n.id,
label: getLocalizedName(n)
}))
return (
<div className="flex-1 flex flex-col min-h-screen bg-stone text-ink">
<main className="max-w-2xl mx-auto px-4 sm:px-6 lg:px-8 py-12 flex-1 w-full">
<div className="bg-paper p-8 rounded-3xl border border-pine/8 shadow-sm">
<div className="mb-8 border-b border-dashed border-pine/8 pb-6">
<h1 className="text-3xl font-heading font-extrabold text-pine lowercase">
{navT('addBusiness')}
</h1>
<p className="text-xs text-shutter font-mono uppercase tracking-wider mt-1.5">
marmaris local yeni başvuru
</p>
</div>
<BusinessForm
translations={{
businessName: t('businessName'),
category: t('category'),
neighborhood: t('neighborhood'),
address: t('address'),
phone: t('phone'),
whatsapp: t('whatsapp'),
description: t('description'),
image: t('image'),
submit: t('submit'),
sending: t('sending'),
success: t('success'),
contactName: 'Yetkili Adı Soyadı',
contactEmail: 'İletişim E-postası'
}}
categories={categoryOptions}
neighborhoods={neighborhoodOptions}
/>
</div>
</main>
</div>
)
}