diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2f74e82..3c84192 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Open_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Award-winning bakery specializing in custom cakes, pastries, and gourmet treats. Fresh ingredients, beautiful designs, fast delivery. Order your cake today!", keywords: "custom cakes, bakery, handcrafted cakes, pastries, cake delivery, celebration cakes", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Discover freshly baked, beautifully designed cakes perfect for any celebration", url: "https://phoebecakesandbake.com", siteName: "Phoebe Cakes & Bake", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/lemon-pie-drink-wooden-platter_114579-18546.jpg", alt: "Phoebe Cakes & Bake featured cakes"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Award-winning bakery with fresh, custom cakes and pastries", images: ["http://img.b2bpic.net/free-photo/lemon-pie-drink-wooden-platter_114579-18546.jpg"],
- },
-};
+ title: "Phoebe Cakes & Bake", description: "Award-Winning Bakery Since 2015"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-