Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f057425bd | |||
| b23ceec1d8 | |||
| e7479f86e6 | |||
| 1c56641ccc | |||
| ff1b016ccc | |||
| 2cc9e79407 | |||
| d4c31b4fa0 | |||
| 4fe9aac531 |
@@ -1,52 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
|
||||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Özel Simdent Diş Tedavi Merkezi | Esenyurt, İstanbul", description: "Esenyurt'ta deneyimli diş hekimliği hizmetleri. İmplant, kanal tedavisi, estetik diş hekimliği. Ücretsiz muayene, aynı gün randevu. 4,5★ 61 hasta yorumu.", keywords: "diş kliniği, diş hekimi, implant, kanal tedavisi, Esenyurt, İstanbul, ücretsiz muayene", metadataBase: new URL("https://www.sim-dent.com"),
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://www.sim-dent.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Simdent Diş Tedavi Merkezi", description: "Esenyurt'ta profesyonel diş tedavisi. Ağrısız işlem, steril ortam, deneyimli hekimler.", url: "https://www.sim-dent.com", siteName: "Özel Simdent Diş Tedavi Merkezi", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Simdent Diş Tedavi Merkezi", description: "Esenyurt'un güvenilir diş kliniği. Hızlı randevu, profesyonel hizmet."},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
testimonialRotationInterval={5000}
|
testimonialRotationInterval={5000}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Hemen Ara", href: "tel:+905424810181" },
|
{ text: "Ücretsiz Muayene Al", href: "tel:+905424810181" },
|
||||||
{ text: "Randevu Talep Et", href: "#contact" }
|
{ text: "Randevu Talep Et", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -206,8 +206,8 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "0542 481 01 81", href: "tel:+905424810181" },
|
{ text: "Form Gönder", href: "#form" },
|
||||||
{ text: "Form Gönder", href: "#form" }
|
{ text: "0542 481 01 81", href: "tel:+905424810181" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user