From 3b8cafe30a495fa5053ea635f8a7a6b71c658ee8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 08:52:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fd397fd..6e18316 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Imperial Treehouse | Handcrafted Gifts & Flower Bouquets Dubai", description: "Premium handmade flower bouquets and personalized gifts in Dubai. Custom designs, fast delivery, and pickup in Al Quoz. Perfect for birthdays, anniversaries, and special occasions.", keywords: "customized gifts Dubai, flower bouquets Dubai, handmade gifts Al Quoz, personalized gifts Dubai, gift delivery Dubai", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Imperial Treehouse | Handcrafted Gifts Dubai", description: "Discover premium handmade flower bouquets and personalized gifts crafted with care in Dubai. Custom orders welcome.", url: "https://imperialtreehouse.ae", siteName: "Imperial Treehouse", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/spring-composition-with-bouquet-flowers-vase-closeup_169016-29760.jpg", alt: "Imperial Treehouse Handcrafted Bouquet"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Imperial Treehouse | Handcrafted Gifts Dubai", description: "Premium personalized gifts and flower arrangements in Dubai", images: ["http://img.b2bpic.net/free-photo/spring-composition-with-bouquet-flowers-vase-closeup_169016-29760.jpg"], - }, -}; + title: "Imperial Treehouse | Handcrafted Bouquets & Personalized Gifts in Dubai", description: "Custom-made floral designs and meaningful gifts for every occasion. Locally crafted in Al Quoz with delivery and pickup available across Dubai."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +