canina/frontend/application/app/layout.tsx
2026-08-06 23:02:07 +03:30

98 lines
3.3 KiB
TypeScript

import type { Metadata } from 'next';
import './globals.css';
import ClientLayout from './ClientLayout';
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://canina-iran.com';
export const metadata: Metadata = {
metadataBase: new URL(siteUrl),
title: {
template: '%s | کانینا ایران',
default: 'کانینا ایران - مکمل‌های درمانی حیوانات خانگی با گرید دارویی اختصاصی',
},
description: 'تدارک هوشمندانه سلامت برای همراهان وفادار شما. کانینا ایران واردکننده انحصاری مکمل‌های درمانی با گرید دارویی اختصاصی از آلمان.',
keywords: ['مکمل حیوانات خانگی', 'مکمل سگ', 'مکمل گربه', 'کانینا', 'داروی حیوانات', 'Canina Iran'],
authors: [{ name: 'Canina Iran' }],
creator: 'Canina Iran',
publisher: 'Canina Iran',
alternates: {
canonical: '/',
},
formatDetection: {
email: false,
address: false,
telephone: false,
},
openGraph: {
title: 'کانینا ایران - مکمل‌های درمانی حیوانات خانگی با گرید دارویی اختصاصی',
description: 'واردکننده انحصاری مکمل‌های درمانی با گرید دارویی اختصاصی از آلمان',
url: siteUrl,
siteName: 'کانینا ایران',
locale: 'fa_IR',
type: 'website',
images: [
{
url: '/assets/images/regenerated_image_1779109861747.png',
width: 1200,
height: 630,
alt: 'کانینا ایران - مکمل‌های درمانی حیوانات خانگی',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'کانینا ایران - مکمل‌های درمانی حیوانات خانگی با گرید دارویی اختصاصی',
description: 'مکمل‌های درمانی حیوانات خانگی کانینا با پروانه رسمی دامپزشکی',
images: ['/assets/images/regenerated_image_1779109861747.png'],
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
'max-video-preview': -1,
'max-image-preview': 'large',
'max-snippet': -1,
},
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
const jsonLd = {
'@context': 'https://schema.org',
'@type': 'Organization',
name: 'کانینا ایران',
url: 'https://canina-iran.com',
logo: 'https://canina.de/media/fb/d5/47/1683116813/Logo.png',
contactPoint: {
'@type': 'ContactPoint',
telephone: '+98-21-88884444',
contactType: 'customer service',
email: 'info@canina-iran.com',
areaServed: 'IR',
availableLanguage: 'Persian'
}
};
const safeJsonLd = JSON.stringify(jsonLd).replace(/</g, '\\u003c');
return (
<html lang="fa" dir="rtl" suppressHydrationWarning>
<body className="min-h-screen bg-medical-gray-50 font-sans" suppressHydrationWarning>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: safeJsonLd }}
/>
<ClientLayout>
{children}
</ClientLayout>
</body>
</html>
);
}