Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| acf56c5a0e | |||
| 61e44c99c0 | |||
| a19295f78d | |||
| 09d69bd67b | |||
| d00f9f2e9b | |||
| 07a680fa89 | |||
| ad1afda41b | |||
| d36da7418a | |||
| 8fcd00776d |
@@ -1,55 +1,20 @@
|
||||
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 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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
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."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -70,15 +70,15 @@ export default function LandingPage() {
|
||||
],
|
||||
stats: [
|
||||
{
|
||||
title: "Affordable Prices", values: ["Best", "Value", "Deals"],
|
||||
title: "Affordable Prices", values: [90, 85, 95],
|
||||
description: "Budget-friendly clothing for everyone."
|
||||
},
|
||||
{
|
||||
title: "Quality Fabrics", values: ["Premium", "Comfort", "Fit"],
|
||||
title: "Quality Fabrics", values: [88, 92, 87],
|
||||
description: "High-quality ready-made garments."
|
||||
},
|
||||
{
|
||||
title: "Family Trust", values: ["20+", "Reviews", "4★"],
|
||||
title: "Family Trust", values: [91, 89, 93],
|
||||
description: "Rated 3.7★ by local families."
|
||||
},
|
||||
],
|
||||
@@ -238,14 +238,14 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Call Now or Visit Our Store"
|
||||
title="Get in Touch Today"
|
||||
description="Reach out to Nanda Readymade for any inquiries about our clothing collections or visit us at our store in Nashik."
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
inputPlaceholder="Enter your message"
|
||||
buttonText="Send Inquiry"
|
||||
buttonText="Send Message"
|
||||
termsText="Call us directly at 075884 17178 or send a WhatsApp message for quick response."
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user