Merge version_2 into main #2
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Beratlar Kapı ve Mobilya - Premium Interior Doors Istanbul", description: "Handcrafted premium interior doors and furniture refinishing in Istanbul. Quiet luxury with masterful craftsmanship. 4.8/5 rated. Custom designs available.", keywords: "interior doors, furniture refinishing, Istanbul, premium doors, handcrafted, custom design", openGraph: {
|
||||
title: "Beratlar Kapı ve Mobilya - The Art of Doors", description: "Premium handcrafted interior doors and furniture refinishing from Istanbul", siteName: "Beratlar Kapı ve Mobilya", type: "website"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Beratlar Kapı ve Mobilya - Premium Interior Doors & Furniture", description: "Handcrafted interior doors and furniture refinishing with meticulous attention to wood texture and quality finish. Experience quiet luxury and professional craftsmanship from Istanbul."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -53,7 +53,10 @@ export default function LandingPage() {
|
||||
]}
|
||||
rating={5}
|
||||
ratingText="Rated 4.8/5 - Google"
|
||||
buttons={[{ text: "Ürünleri Keşfet", href: "#products" }]}
|
||||
buttons={[
|
||||
{ text: "Ürünleri Keşfet", href: "#products" },
|
||||
{ text: "Danışmanlık Talep Et", href: "#contact" }
|
||||
]}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
mediaAnimation="blur-reveal"
|
||||
|
||||
Reference in New Issue
Block a user