1 Commits

Author SHA1 Message Date
8935f92cc2 Update src/app/page.tsx 2026-03-05 08:16:23 +00:00
2 changed files with 46 additions and 10 deletions

View File

@@ -1,20 +1,55 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ subsets: ["latin"] });
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Nanda Readymade - Affordable Family Clothing in Nashik", description: "Quality ready-made clothes for men, women, and kids at budget-friendly prices. Visit Nanda Readymade near Trimurti Chowk, Nashik."};
title: "Nanda Readymade | Affordable Family Clothing Store in Nashik", description: "Shop quality ready-made clothes for men, women, and kids at affordable prices. Visit Nanda Readymade near Trimutti Chowk, Nashik. Call 075884 17178 today.", keywords: "clothing store Nashik, ready-made garments, family clothes, affordable fashion, Trimurti Chowk", metadataBase: new URL("https://nanda-readymade.local"),
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Nanda Readymade | Family Clothing Store in Nashik", description: "Affordable ready-made clothes for the whole family at Nanda Readymade, Nashik.", url: "https://nanda-readymade.local", siteName: "Nanda Readymade", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/side-view-man-looking-clothes-hanging-rail-shop_23-2148175643.jpg", alt: "Nanda Readymade Store"},
],
},
twitter: {
card: "summary_large_image", title: "Nanda Readymade | Family Clothing Store in Nashik", description: "Quality ready-made clothes at affordable prices for families.", images: ["http://img.b2bpic.net/free-photo/side-view-man-looking-clothes-hanging-rail-shop_23-2148175643.jpg"],
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1417,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -110,7 +110,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
imagePosition="right"
imageSrc="http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg"
imageSrc="http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg?_wi=1"
imageAlt="Nanda Readymade clothing store"
bulletPoints={[
{
@@ -223,13 +223,13 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
products={[
{
id: "location-1", name: "Ambad-Trimurti Chowk Link Road", price: "Trimurti Chowk, New CIDCO", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg", imageAlt: "Store location"
id: "location-1", name: "Ambad-Trimurti Chowk Link Road", price: "Trimurti Chowk, New CIDCO", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg?_wi=2", imageAlt: "Store location"
},
{
id: "location-2", name: "Savata Nagar", price: "Nashik, Maharashtra 422008", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg", imageAlt: "Store location"
id: "location-2", name: "Savata Nagar", price: "Nashik, Maharashtra 422008", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg?_wi=3", imageAlt: "Store location"
},
{
id: "location-3", name: "Call or Get Directions", price: "075884 17178", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg", imageAlt: "Contact store"
id: "location-3", name: "Call or Get Directions", price: "075884 17178", imageSrc: "http://img.b2bpic.net/free-photo/family-buying-clothes-shop_1098-427.jpg?_wi=4", imageAlt: "Contact store"
},
]}
/>