diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ff9797..cf69c16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,18 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Arlenes Flowers | Luxury Custom Floral Arrangements in Jerome, ID", description: "Premium, hand-crafted floral arrangements for weddings, events, and special occasions in Jerome, ID. Same-day delivery available. Trusted by event planners and gift-givers.", keywords: "florist Jerome Idaho, luxury flowers, custom arrangements, wedding flowers, same-day delivery", metadataBase: new URL("https://arlenesflowers.com"), - alternates: { - canonical: "https://arlenesflowers.com"}, - openGraph: { - title: "Arlenes Flowers | Luxury Floral Arrangements", description: "Fresh, luxurious, and creatively designed arrangements delivered with love in Jerome, ID.", url: "https://arlenesflowers.com", siteName: "Arlenes Flowers", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-luxurious-bouquet-orange-brown-roses-black-background_181624-24211.jpg", alt: "Luxury floral arrangement"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Arlenes Flowers | Luxury Floral Arrangements", description: "Fresh, luxurious arrangements delivered with love in Jerome, ID.", images: ["http://img.b2bpic.net/free-photo/vertical-closeup-shot-luxurious-bouquet-orange-brown-roses-black-background_181624-24211.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Arlenes Flowers", description: "Fresh, luxurious, and creatively designed flower arrangements delivered with love in Jerome, ID, and beyond."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +