Merge version_1 into main #1
@@ -109,7 +109,7 @@ const AboutPage = () => {
|
||||
title: "Müşteri Memnuniyeti",
|
||||
description: "Müşteri memnuniyeti her kararımızın merkezinde yer alır. Satış öncesi ve sonrasında tam destek sağlarız.",
|
||||
tag: "Önem",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greeting-new-partner_1098-13797.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greeting-new-partner_1098-13797.jpg?_wi=2",
|
||||
imageAlt: "customer satisfaction",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ const AboutPage = () => {
|
||||
title: "Şeffaflık ve Dürüstlük",
|
||||
description: "Tüm işlemlerimiz açık ve dürüst bir şekilde yürütülür. Hiçbir gizli maliyet veya ek ücret yoktur.",
|
||||
tag: "Ilkeler",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-using-laptop_1170-1319.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-using-laptop_1170-1319.jpg?_wi=2",
|
||||
imageAlt: "transparency and honesty",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ const AboutPage = () => {
|
||||
title: "Kalite ve Güvenlik",
|
||||
description: "Her araç profesyonel mekanikler tarafından detaylı şekilde kontrol edilir ve sertifikalandırılır.",
|
||||
tag: "Standart",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-explaining-quotation-customer_1170-1558.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-explaining-quotation-customer_1170-1558.jpg?_wi=2",
|
||||
imageAlt: "quality assurance",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -103,7 +103,7 @@ export default function ContactPage() {
|
||||
title="Hemen İletişime Geçin"
|
||||
description="Araç hakkında bilgi almak, test sürüşü ayarlamak veya herhangi bir sorunuz varsa lütfen aşağıdaki formu doldurun. Ekibimiz en kısa sürede sizinle iletişime geçecektir."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg?_wi=3"
|
||||
imageAlt="Seferoğlu Otomotiv showroom"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Seferoğlu Otomotiv - Mersin İkinci El Araba",
|
||||
description: "Mersin'de güvenilir ikinci el arabalar. Şeffaf fiyatlandırma, kaliteli araçlar ve profesyonel hizmet. 4.7★ rating. Hemen ara: +90 324 328 33 28",
|
||||
keywords: "Mersin ikinci el araba, Mersin oto galeri, Yenişehir ikinci el araç, kullanılmış araba Mersin, oto alım satım",
|
||||
metadataBase: new URL("https://seferoğlutomotiv.com"),
|
||||
alternates: {
|
||||
canonical: "https://seferoğlutomotiv.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Seferoğlu Otomotiv - Mersin'de Güvenilir Araçlar",
|
||||
description: "Kaliteli, kontrollü ikinci el araçlar. Şeffaf fiyatlandırma ve müşteri memnuniyeti.",
|
||||
siteName: "Seferoğlu Otomotiv",
|
||||
url: "https://seferoğlutomotiv.com",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://seferoğlutomotiv.com/og-image.jpg",
|
||||
alt: "Seferoğlu Otomotiv Premium Cars",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Seferoğlu Otomotiv",
|
||||
description: "Mersin'nin en güvenilir oto galerisi",
|
||||
images: ["https://seferoğlutomotiv.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -141,7 +141,7 @@ const HomePage = () => {
|
||||
title: "Şeffaf Fiyatlandırma",
|
||||
description: "Gizli maliyet yok. Tüm fiyatlandırma açık ve önceden belirtilir.",
|
||||
tag: "Güven",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greeting-new-partner_1098-13797.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greeting-new-partner_1098-13797.jpg?_wi=1",
|
||||
imageAlt: "transparent pricing display",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ const HomePage = () => {
|
||||
title: "Detaylı Araç Kontrol",
|
||||
description: "Her araç profesyonel mekanik tarafından kontrol edilir ve sertifikalandırılır.",
|
||||
tag: "Güvenlik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-using-laptop_1170-1319.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-using-laptop_1170-1319.jpg?_wi=1",
|
||||
imageAlt: "professional vehicle inspection",
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ const HomePage = () => {
|
||||
title: "Müşteri Desteği",
|
||||
description: "Satış sonrasında da müşteri memnuniyeti için tam destek sağlarız.",
|
||||
tag: "Hizmet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-explaining-quotation-customer_1170-1558.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-explaining-quotation-customer_1170-1558.jpg?_wi=1",
|
||||
imageAlt: "customer support team",
|
||||
},
|
||||
]}
|
||||
@@ -238,7 +238,7 @@ const HomePage = () => {
|
||||
name: "2019 BMW 3 Series",
|
||||
price: "₺1.250.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg?_wi=1",
|
||||
imageAlt: "2019 BMW 3 Series sedan",
|
||||
},
|
||||
{
|
||||
@@ -246,7 +246,7 @@ const HomePage = () => {
|
||||
name: "2021 Toyota Corolla",
|
||||
price: "₺850.000",
|
||||
variant: "Sedan / Manuel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg?_wi=1",
|
||||
imageAlt: "2021 Toyota Corolla hybrid",
|
||||
},
|
||||
{
|
||||
@@ -254,7 +254,7 @@ const HomePage = () => {
|
||||
name: "2020 Renault Talisman",
|
||||
price: "₺920.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg?_wi=1",
|
||||
imageAlt: "2020 Renault Talisman sedan",
|
||||
},
|
||||
]}
|
||||
@@ -309,7 +309,7 @@ const HomePage = () => {
|
||||
title="Hemen İletişime Geçin"
|
||||
description="Araç hakkında bilgi almak veya test sürüşü ayarlamak için bize yazın. Kısa sürede geri dönüş yapacağız."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg?_wi=1"
|
||||
imageAlt="automotive dealership interior"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function VehiclesPage() {
|
||||
name: "2019 BMW 3 Series",
|
||||
price: "₺1.250.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg?_wi=2",
|
||||
imageAlt: "2019 BMW 3 Series sedan",
|
||||
},
|
||||
{
|
||||
@@ -105,7 +105,7 @@ export default function VehiclesPage() {
|
||||
name: "2021 Toyota Corolla",
|
||||
price: "₺850.000",
|
||||
variant: "Sedan / Manuel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg?_wi=2",
|
||||
imageAlt: "2021 Toyota Corolla hybrid",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function VehiclesPage() {
|
||||
name: "2020 Renault Talisman",
|
||||
price: "₺920.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg?_wi=2",
|
||||
imageAlt: "2020 Renault Talisman sedan",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function VehiclesPage() {
|
||||
name: "2018 Mercedes-Benz C-Class",
|
||||
price: "₺1.450.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg?_wi=3",
|
||||
imageAlt: "2018 Mercedes-Benz C-Class luxury sedan",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function VehiclesPage() {
|
||||
name: "2022 Volkswagen Passat",
|
||||
price: "₺1.100.000",
|
||||
variant: "Sedan / Otomatik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-gray-coupe_417767-16.jpg?_wi=3",
|
||||
imageAlt: "2022 Volkswagen Passat",
|
||||
},
|
||||
{
|
||||
@@ -137,7 +137,7 @@ export default function VehiclesPage() {
|
||||
name: "2020 Hyundai Elantra",
|
||||
price: "₺750.000",
|
||||
variant: "Sedan / Manuel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-taxi-car_23-2149149625.jpg?_wi=3",
|
||||
imageAlt: "2020 Hyundai Elantra",
|
||||
},
|
||||
]}
|
||||
@@ -191,7 +191,7 @@ export default function VehiclesPage() {
|
||||
title="Araç Hakkında Bilgi Almak İçin İletişime Geçin"
|
||||
description="Seçtiğiniz araç hakkında daha fazla bilgi almak, test sürüşü ayarlamak veya fiyat hakkında görüşmek için lütfen iletişim formunu doldurun. Kısa sürede geri dönüş yapacağız."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861920.jpg?_wi=2"
|
||||
imageAlt="Seferoğlu Otomotiv showroom"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user