Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e02e643dd | |||
| 160326e122 | |||
| 4317e8080b | |||
| 186fb25af9 | |||
| 71c78683e1 |
@@ -1,55 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Poppins, Playfair_Display } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
const poppins = Poppins({
|
||||
subsets: ["latin"],
|
||||
});
|
||||
weight: ["400", "500", "600", "700", "800", "900"],
|
||||
variable: "--font-poppins"});
|
||||
|
||||
const playfair = Playfair_Display({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700", "800", "900"],
|
||||
variable: "--font-playfair"});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Kavya Gift & Toy Shop | Trusted Toys in Kudasan, Gandhinagar",
|
||||
description: "Affordable toys, gifts & same-day delivery in Kudasan, Gandhinagar. 20+ years trusted by families. Call now for quick service!",
|
||||
keywords: "toy shop Kudasan, gift store Gandhinagar, affordable toys, same-day delivery, toy store near me",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Kavya Gift & Toy Shop | Kudasan's Trusted Toy & Gift Store",
|
||||
description: "Affordable toys & gifts with same-day delivery. Serving families for 20+ years.",
|
||||
url: "https://kavyagiftshop.com",
|
||||
siteName: "Kavya Gift & Toy Shop",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/happy-mother-daughter_171337-2365.jpg",
|
||||
alt: "Kavya Gift & Toy Shop - Colorful toy display",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Kavya Gift & Toy Shop | Toys & Gifts in Kudasan",
|
||||
description: "Affordable toys & gifts with same-day delivery in Gandhinagar.",
|
||||
images: ["http://img.b2bpic.net/free-photo/happy-mother-daughter_171337-2365.jpg"],
|
||||
},
|
||||
title: "Kavya Gift & Toy Shop - Toys, Gifts & Same-Day Delivery in Kudasan", description: "Affordable toys, gifts, and same-day delivery in Kudasan, Gandhinagar. Trusted for 20+ years. Shop online or visit us for personalized gifting.", keywords: "toys, gifts, Kudasan, Gandhinagar, same-day delivery, toy shop", openGraph: {
|
||||
title: "Kavya Gift & Toy Shop", description: "Affordable toys, gifts, and same-day delivery for every celebration.", type: "website"},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={`${poppins.variable} ${playfair.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1394,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,6 +93,12 @@ export default function HomePage() {
|
||||
tag="20+ Years Trusted"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/cheerful-female-professional-with-tablet-meeting-table-with-satisfied-customers_74855-8866.jpg?_wi=1", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cheerful-female-professional-with-tablet-meeting-table-with-satisfied-customers_74855-8866.jpg?_wi=2", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cheerful-female-professional-with-tablet-meeting-table-with-satisfied-customers_74855-8866.jpg?_wi=3", alt: "Customer 3" },
|
||||
]}
|
||||
avatarText="Trusted by 10,000+ families"
|
||||
buttons={[
|
||||
{ text: "📞 Call Now", href: "tel:+919876543210" },
|
||||
{ text: "💬 WhatsApp Us", href: "https://wa.me/919876543210?text=Hi%20Kavya%20Gift%20Shop%2C%20I'm%20looking%20for%20toys%2Fgifts" },
|
||||
@@ -243,4 +249,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user