5 Commits

Author SHA1 Message Date
1c56641ccc Update src/app/page.tsx 2026-03-05 02:11:58 +00:00
ff1b016ccc Update src/app/layout.tsx 2026-03-05 02:11:58 +00:00
2cc9e79407 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:02:06 +00:00
d4c31b4fa0 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:01:26 +00:00
4fe9aac531 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:00:18 +00:00
2 changed files with 14 additions and 39 deletions

View File

@@ -1,51 +1,27 @@
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={{
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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>