first commit

This commit is contained in:
2026-04-12 13:17:43 +03:00
parent 220cc00f46
commit 612ed769c3
41 changed files with 3633 additions and 80 deletions

69
components/JsonLd.tsx Normal file
View File

@@ -0,0 +1,69 @@
import React from 'react';
export const JsonLd = () => {
const businessSchema = {
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Aydoğan Nakliyat Vinç",
"image": "https://aydogannakliyatvinc.com/logo.png", // Varsa gerçek logo URL'si
"@id": "https://aydogannakliyatvinc.com",
"url": "https://aydogannakliyatvinc.com",
"telephone": "+902526920000",
"address": {
"@type": "PostalAddress",
"streetAddress": "Merkez Mah. Sanayi Sitesi No: 42",
"addressLocality": "Dalaman",
"addressRegion": "Muğla",
"postalCode": "48770",
"addressCountry": "TR"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 36.7644,
"longitude": 28.8028
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "00:00",
"closes": "23:59"
},
"sameAs": [
"https://www.facebook.com/aydogannakliyatvinc", // Örnek sosyal medya linkleri
"https://www.instagram.com/aydogannakliyatvinc"
],
"areaServed": [
{
"@type": "City",
"name": "Dalaman"
},
{
"@type": "City",
"name": "Muğla"
},
{
"@type": "State",
"name": "Ege Bölgesi"
},
{
"@type": "Country",
"name": "Türkiye"
}
]
};
return (
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(businessSchema) }}
/>
);
};