Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-10 04:47:34 +00:00
2 changed files with 13 additions and 45 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Honey Confectionery - Fresh Cakes & Bakery in Yamuna Vihar, Delhi", description: "Best bakery in Yamuna Vihar offering fresh cakes, pastries, and custom cake orders. Open daily. Call 087009 45501 or order on WhatsApp.", keywords: "bakery Yamuna Vihar, cakes Delhi, custom cake Shahdara, fresh pastries, birthday cake order", metadataBase: new URL("https://honeyconfectionery.com"),
alternates: {
canonical: "https://honeyconfectionery.com"},
openGraph: {
title: "Honey Confectionery - Fresh Cakes & Bakery", description: "Fresh, delicious cakes and pastries made daily in Yamuna Vihar. Order your custom cake today!", url: "https://honeyconfectionery.com", siteName: "Honey Confectionery", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-man-shopping-with-mask_23-2149445494.jpg", alt: "Fresh cakes at Honey Confectionery"},
],
},
twitter: {
card: "summary_large_image", title: "Honey Confectionery - Fresh Cakes & Bakery", description: "Best bakery in Yamuna Vihar for fresh cakes and pastries", images: ["http://img.b2bpic.net/free-photo/medium-shot-man-shopping-with-mask_23-2149445494.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Honey Confectionery - Fresh Cakes & Bakery in Yamuna Vihar", description: "Delicious cakes, pastries, and fresh bakery products made daily in Yamuna Vihar, Delhi. Order your custom cake today or visit us for freshly baked treats."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,6 +42,12 @@ export default function LandingPage() {
tag="Fresh Daily"
tagIcon={Sparkles}
tagAnimation="slide-up"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/person-dealing-with-rosacea_23-2150478709.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-outside_23-2149042107.jpg", alt: "Customer 3" }
]}
avatarText="Trusted by 500+ families in Yamuna Vihar"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-shopping-with-mask_23-2149445494.jpg"
imageAlt="Fresh cakes and pastries at Honey Confectionery"
mediaAnimation="slide-up"