From c6b68fbe67dda00c425937c49f8aadc21840b7b6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 04:26:32 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4d5b0cc..d7b93d9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -13,7 +13,6 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Cakes", id: "/cakes" }, - { name: "Custom Orders", id: "/custom-orders" }, { name: "Contact", id: "/contact" }, ]; @@ -23,14 +22,13 @@ export default function AboutPage() { { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Cake Menu", href: "/cakes" }, - { label: "Custom Orders", href: "/custom-orders" }, ], }, { title: "Services", items: [ { label: "Birthday Cakes", href: "/cakes" }, { label: "Wedding Cakes", href: "/cakes" }, - { label: "Custom Designs", href: "/custom-orders" }, + { label: "Custom Designs", href: "/contact" }, { label: "Gift Cakes", href: "/cakes" }, ], }, @@ -130,7 +128,7 @@ export default function AboutPage() { title="Join Our Happy Customers Today" description="Discover why Caramella's is the trusted choice for premium cakes in Moshi and Pune. Let's create your perfect celebration!" buttons={[ - { text: "Order Now", href: "/custom-orders" }, + { text: "Order Now", href: "/contact" }, { text: "Contact Us", href: "/contact" }, ]} buttonAnimation="slide-up" @@ -148,4 +146,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 3a6457ad864aeaaeffbfae4adee3eabf978e63ef Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 04:26:32 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1431 +------------------------------------------- 1 file changed, 16 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8b486f..e92ff3f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,36 @@ 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 { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Caramella's Cake Shop - Premium Cakes & Desserts in Moshi & Pune", - description: "Award-winning bakery offering premium custom cakes, desserts, and pastries in Moshi and Pune. Same-day delivery available. Order your dream cake online today!", - keywords: "cake shop Moshi, cake shop Pune, custom cakes, premium bakery, birthday cakes, wedding cakes, same-day delivery", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Caramella's Cake Shop - Premium Cakes & Desserts", - description: "Order premium custom cakes and desserts in Moshi & Pune. Fresh ingredients, artistic designs, and same-day delivery.", - url: "https://caramellas-cakes.com", - siteName: "Caramella's Cake Shop", - images: [ - { - url: "http://img.b2bpic.net/free-photo/slice-cake-with-cocoa-strawberries-white-plate_114579-13807.jpg", - alt: "Caramella's Premium Cake Collection", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Caramella's Cake Shop - Premium Cakes & Desserts", - description: "Order premium custom cakes and desserts in Moshi & Pune.", - images: ["http://img.b2bpic.net/free-photo/slice-cake-with-cocoa-strawberries-white-plate_114579-13807.jpg"], - }, -}; + title: "Caramella's Cake Shop", description: "Premium, custom-designed cakes for every celebration. Same-day delivery in Moshi and Pune."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}