Security: - requireAdmin() session check added to every admin-only server action (previously relied only on middleware path matching, which Next.js Server Actions don't reliably respect) - Real Prisma + bcrypt admin auth, replacing hardcoded credentials; split into an Edge-safe auth.config.ts (used by proxy.ts) and the full Prisma-backed auth.ts (route handler, server actions, server components) - Removed hardcoded fallback secret on the Instagram sync cron endpoint - Honeypot field + per-IP rate limiting on contact/business-submission forms and the analytics events endpoint Features: - AI trip planner (/plan-olustur, /plan/[id]) backed by DeepSeek, grounded to only recommend isLocalApproved listings, with a deterministic link-injection fallback for anything the model doesn't format as markdown - Interactive Leaflet/OpenStreetMap view on category listing pages - Telegram notifications for new contact messages and business submissions SEO: - Brand-consistent favicon/apple-icon/PWA icons and default Open Graph/ Twitter share images, generated via next/og (replacing default Next.js placeholders) - BreadcrumbList structured data on category and listing detail pages - Fixed two remaining raw <img> tags to use next/image Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import ContactForm from './ContactForm'
|
|
import type { Metadata } from 'next'
|
|
import { basicMetadata } from '@/lib/seo'
|
|
|
|
interface ContactPageProps {
|
|
params: Promise<{ locale: string }>
|
|
}
|
|
|
|
export async function generateMetadata({ params }: ContactPageProps): Promise<Metadata> {
|
|
const { locale } = await params
|
|
|
|
const title =
|
|
locale === 'en'
|
|
? 'Contact — Marmaris Local'
|
|
: locale === 'ru'
|
|
? 'Контакты — Marmaris Local'
|
|
: 'İletişim — Marmaris Local'
|
|
|
|
const description =
|
|
locale === 'en'
|
|
? 'Get in touch with the Marmaris Local team.'
|
|
: locale === 'ru'
|
|
? 'Свяжитесь с командой Marmaris Local.'
|
|
: 'Marmaris Local ekibiyle iletişime geçin.'
|
|
|
|
return basicMetadata(title, description, locale, '/contact')
|
|
}
|
|
|
|
export default async function ContactPage({ params }: ContactPageProps) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
|
|
const t = await getTranslations('forms')
|
|
const navT = await getTranslations('nav')
|
|
|
|
return (
|
|
<div className="flex-1 flex flex-col min-h-screen bg-stone text-ink">
|
|
|
|
<main className="max-w-xl 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('contact')}
|
|
</h1>
|
|
<p className="text-xs text-shutter font-mono uppercase tracking-wider mt-1.5">
|
|
marmaris local • bize ulaşın
|
|
</p>
|
|
</div>
|
|
|
|
<ContactForm
|
|
translations={{
|
|
name: t('name'),
|
|
email: t('email'),
|
|
subject: t('subject'),
|
|
message: t('message'),
|
|
submit: t('submit'),
|
|
sending: t('sending'),
|
|
success: t('contactSuccess')
|
|
}}
|
|
/>
|
|
|
|
</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|