diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 017893d..eaebca2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,25 @@ 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 { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Hendek Çiçekçilik | 7/24 Taze Çiçek Teslimat", description: "Sevdiklerinizin mutluluğu için taze çiçekler, saksı bitkiler ve özel aranjmanlar. 7/24 kesintisiz teslimat ve WhatsApp sipariş seçeneği.", keywords: "çiçekçi, taze çiçek, çiçek teslimat, orkide, sukulent, çiçek buketi, Hendek, Sakarya", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Hendek Çiçekçilik | Sevdiklerinizin Mutluluğu İçin", description: "7/24 taze çiçek teslimat hizmetiyle duygularınızı en güzel şekilde ifade edin.", siteName: "Hendek Çiçekçilik", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-bouquet-pink-white-purple-color-statice-alstroemeria-chrysanthemum-flowers-craft-paper-isolated-rustic-background_141793-7994.jpg", alt: "Hendek Çiçekçilik - Taze Çiçekler"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hendek Çiçekçilik | 7/24 Taze Çiçek Teslimat", description: "Sevdiklerinizin mutluluğu için taze çiçekler ve özel aranjmanlar.", images: [ - "http://img.b2bpic.net/free-photo/side-view-bouquet-pink-white-purple-color-statice-alstroemeria-chrysanthemum-flowers-craft-paper-isolated-rustic-background_141793-7994.jpg"], - }, -}; + title: "Hendek Çiçekçilik - Taze Çiçekler ve Aranjmanlar", description: "7/24 kesintisiz çiçek teslimat hizmetiyle sevdiklerinizin mutluluğu için en güzel çiçek ve aranjmanlar. Taze kesme çiçekler, saksı bitkiler, teraryumlar ve etkinlik aranjmanları."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}