3 Commits

Author SHA1 Message Date
fa7bad8671 Update src/app/page.tsx 2026-03-04 17:50:29 +00:00
4f91bafcf7 Update src/app/layout.tsx 2026-03-04 17:50:28 +00:00
b3e9407858 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:48:32 +00:00
2 changed files with 10 additions and 66 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "ANVAYA ROOTS - Premium Handcrafted Yoga Mat Bags",
description: "Sustainable, custom-designed yoga mat bags handcrafted in India. Premium quality with traditional prints. Shop now or create your own design.",
keywords: "yoga mat bags, handmade yoga mat bags, custom yoga bags, eco-friendly yoga accessories, sustainable yoga products, handcrafted bags India",
metadataBase: new URL("https://www.anvayaroots.com"),
alternates: {
canonical: "https://www.anvayaroots.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "ANVAYA ROOTS - Premium Handcrafted Yoga Mat Bags",
description: "Sustainable, custom-designed yoga mat bags handcrafted in India. Premium quality with traditional prints.",
url: "https://www.anvayaroots.com",
siteName: "ANVAYA ROOTS",
type: "website",
images: [
{
url: "https://www.anvayaroots.com/og-image.jpg",
alt: "ANVAYA ROOTS handcrafted yoga mat bag",
},
],
},
twitter: {
card: "summary_large_image",
title: "ANVAYA ROOTS - Premium Yoga Mat Bags",
description: "Handcrafted sustainable yoga mat bags with custom design options.",
images: ["https://www.anvayaroots.com/twitter-image.jpg"],
},
};
title: "ANVAYA ROOTS - Handcrafted Yoga Mat Bags", description: "Custom-made, sustainable yoga mat bags blending craftsmanship with eco-conscious design."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -48,7 +48,7 @@ export default function HomePage() {
brandName="ANVAYA ROOTS"
navItems={navItems}
button={{
text: "Call Now", href: "tel:+919876543210"}}
text: "Order Your Custom Bag Today", href: "tel:+919876543210"}}
buttonClassName="bg-primary-cta hover:bg-primary-cta/90 text-primary-cta-text font-semibold rounded-soft px-4 py-2"
/>
</div>
@@ -80,7 +80,7 @@ export default function HomePage() {
imageAlt: "Custom design process"},
]}
buttons={[
{ text: "Call Now", href: "tel:+919876543210" },
{ text: "Order Your Custom Bag Today", href: "/custom-order" },
{ text: "Customize Your Bag", href: "/custom-order" },
]}
buttonAnimation="slide-up"
@@ -326,4 +326,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}