Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,52 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -206,8 +206,8 @@ export default function LandingPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user