diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d655181..5775be6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Salient Cakes | Premium Custom Celebration Cakes & Weddings", description: "Handcrafted custom celebration cakes, wedding cakes & cupcakes. Premium ingredients, artistic design, fresh delivery. Order your perfect cake for weddings, birthdays & events.", keywords: "custom cakes, wedding cakes, celebration cakes, cupcakes, artisan bakery, premium cakes, birthday cakes, corporate cakes", metadataBase: new URL("https://salientcakes.com"), - alternates: { - canonical: "https://salientcakes.com"}, - openGraph: { - title: "Salient Cakes | Premium Custom Celebration Cakes", description: "Experience artisan-crafted custom cakes for every celebration. Handmade with premium ingredients, artistic design, and fresh delivery.", url: "https://salientcakes.com", siteName: "Salient Cakes", images: [ - { - url: "http://img.b2bpic.net/free-photo/sweet-candy-bar-wedding-celebration-party_482257-31517.jpg", alt: "elegant multi-tiered wedding cake display"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Salient Cakes | Premium Custom Celebration Cakes", description: "Handcrafted custom cakes for weddings, birthdays & celebrations.", images: ["http://img.b2bpic.net/free-photo/sweet-candy-bar-wedding-celebration-party_482257-31517.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Salient Cakes - Premium Handcrafted Celebration Cakes", description: "Custom handcrafted cakes for weddings, birthdays, and special celebrations. Premium ingredients, artistic design, and fresh delivery."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -