Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 348f1f6b27 | |||
| a88767b924 | |||
| 745bfd4ab3 | |||
| dab1de84bb | |||
| e897910e3b |
@@ -1,54 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Mulish } 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 mulish = Mulish({
|
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Shree Satguru Bakers | Fresh Cakes & Snacks in Samba", description: "Order fresh cakes, pastries, and snacks from Shree Satguru Bakers in Samba. Custom cakes, birthday cakes, and daily bakery items. Call 060068 86163 for orders.", keywords: "cake shop Samba, bakery near me, birthday cake Samba, fresh cakes, pastries, snacks, custom cake order", robots: {
|
title: "Shree Satguru Bakers | Fresh Cakes & Bakery in Samba", description: "Order delicious fresh cakes, pastries, and snacks from Shree Satguru Bakers in Samba. Customizable cakes for all occasions with 24-48 hours delivery."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Shree Satguru Bakers | Fresh Cakes & Bakery Treats", description: "Discover delicious fresh cakes, pastries, and snacks at Shree Satguru Bakers in Samba. Order now or call 060068 86163.", siteName: "Shree Satguru Bakers", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/different-types-pastries-glass-cabinet-with-price-tag_23-2148028012.jpg", alt: "Shree Satguru Bakers fresh cakes and pastries"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Shree Satguru Bakers | Fresh Cakes & Snacks", description: "Order fresh cakes and snacks in Samba. Custom designs available. Call 060068 86163.", images: ["http://img.b2bpic.net/free-photo/different-types-pastries-glass-cabinet-with-price-tag_23-2148028012.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1379,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ export default function LandingPage() {
|
|||||||
<div id="cakes" data-section="cakes">
|
<div id="cakes" data-section="cakes">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Featured Cakes & Desserts"
|
title="Featured Cakes & Desserts"
|
||||||
description="Explore our most popular cake flavors and custom designs. Perfect for birthdays, anniversaries, and special celebrations."
|
description="Limited custom orders accepted daily—book yours within 24-48 hours. Explore our most popular cake flavors and custom designs. Perfect for birthdays, anniversaries, and special celebrations."
|
||||||
tag="Best Sellers"
|
tag="Best Sellers"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user