diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 318a309..ea9c46a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,39 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "The Brownie Spot | Best Brownies in Chitlapakkam, Chennai", description: "Indulge in fresh, handcrafted brownies at The Brownie Spot in Chitlapakkam, Chennai. Order rich chocolate brownies through Swiggy & Zomato. 5+ varieties available!", keywords: "brownies Chitlapakkam, best brownies Chennai, fresh baked brownies, chocolate brownies near Chitlapakkam Lake, dessert delivery Swiggy Zomato, homemade brownies", metadataBase: new URL("https://thebrouniespot.local"), - alternates: { - canonical: "https://thebrouniespot.local"}, - openGraph: { - title: "The Brownie Spot | Freshly Baked Brownies", description: "Discover the best brownies in Chitlapakkam. Fresh daily, delivered through Swiggy and Zomato.", url: "https://thebrouniespot.local", siteName: "The Brownie Spot", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-chocolate-concept_23-2147985544.jpg", alt: "Fresh baked brownie"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Brownie Spot | Best Brownies in Chitlapakkam", description: "Fresh, handcrafted brownies delivered to your door. Order now through Swiggy or Zomato!", images: ["http://img.b2bpic.net/free-photo/beautiful-still-life-with-chocolate-concept_23-2147985544.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Brownie Spot", description: "Freshly baked brownies in Chitlapakkam. Indulge in rich, homemade chocolate brownies delivered right to your door."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +