Merge version_2 into main #4
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } 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 roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Sweetly Bliss - Premium Indian Sweets & Kurkure Samosas", description: "Indulge in authentic handcrafted sweets and crispy snacks. From traditional Gulab Jamun to premium Kurkure Samosas, experience pure taste and quality.", keywords: "Indian sweets, Kurkure samosa, gulab jamun, premium confectionery, online sweet shop, traditional sweets", openGraph: {
|
||||
title: "Sweetly Bliss - Premium Sweets & Snacks", description: "Handcrafted traditional sweets and crispy snacks delivered fresh. 100% premium ingredients, authentic recipes.", siteName: "Sweetly Bliss", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/high-angle-delicious-indian-dessert-plate_23-2149312393.jpg", alt: "Premium Indian sweets collection"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Sweetly Bliss - Premium Sweets & Kurkure Samosas", description: "Authentic handcrafted sweets and premium snacks. Fresh daily, delivered to your door.", images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-indian-dessert-plate_23-2149312393.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Sweetly Bliss - Premium Indian Sweets & Snacks", description: "Discover authentic Indian sweets and premium snacks handcrafted with love since 1998. Fast delivery, 100% premium ingredients, no preservatives."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -264,7 +264,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Subscribe"
|
||||
buttonText="Get Exclusive Deals"
|
||||
termsText="We respect your privacy. Unsubscribe anytime. By subscribing, you agree to our Terms and Privacy Policy."
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user