diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 419803c..5bc7acf 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,21 @@
import type { Metadata } from "next";
-import { Poppins } from "next/font/google";
-import { Montserrat } from "next/font/google";
+import { Inter } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
-
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Bee to Me | Sustainable Floral Arrangements & Design", description: "Handcrafted, eco-friendly floral arrangements that celebrate nature's pollinators. Shop premium bouquets, wedding flowers, and custom designs with sustainable, locally-sourced blooms.", keywords: "flowers, floral arrangements, sustainable florist, wedding flowers, bouquets, eco-friendly, local flowers, bee conservation", metadataBase: new URL("https://beetome.com"),
- alternates: {
- canonical: "https://beetome.com"
- },
- robots: {
- index: true,
- follow: true
- },
- openGraph: {
- title: "Bee to Me | Premium Sustainable Floral Arrangements", description: "Discover handcrafted floral designs that honor pollinators and celebrate natural beauty. Shop sustainable, eco-friendly arrangements today.", type: "website", siteName: "Bee to Me", images: [{
- url: "http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg", alt: "Bee to Me premium floral arrangement"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "Bee to Me | Sustainable Floral Arrangements", description: "Handcrafted flowers that celebrate nature's pollinators. Eco-friendly, locally-sourced, and beautifully designed.", images: ["http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg"]
- }
-};
+ title: "Elegant Restaurant", description: "Experience fine dining at its finest"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-