From cbdcf74bfc9d651059f1f5f9adc54737e0aa6f18 Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Tue, 21 Apr 2026 02:08:09 +0000 Subject: [PATCH] SEO --- public/robots.txt | 3 +++ public/sitemap.xml | 11 +++++++++++ src/app/about.tsx | 11 ++++++++--- src/app/index.tsx | 9 +++++++-- 4 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 public/robots.txt create mode 100644 public/sitemap.xml diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..cb0e261 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / +Sitemap: https://mozimo.in/sitemap.xml diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..59300bf --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,11 @@ + + + + https://mozimo.in/ + 1.0 + + + https://mozimo.in/about + 0.8 + + diff --git a/src/app/about.tsx b/src/app/about.tsx index 3da9baa..4519079 100644 --- a/src/app/about.tsx +++ b/src/app/about.tsx @@ -11,7 +11,12 @@ export const Route = createFileRoute('/about')({ head: () => ({ meta: [ { title: "About Us - Mozimo Chocolate" }, - { name: "description", content: "Discover the passionate pursuit of crafting exceptional chocolate at Mozimo. We champion cocoa diversity and sustainability." } + { name: "description", content: "Discover the passionate pursuit of crafting exceptional chocolate at Mozimo. We champion cocoa diversity and sustainability." }, + { property: "og:title", content: "About Us - Mozimo Chocolate" }, + { property: "og:description", content: "Discover the passionate pursuit of crafting exceptional chocolate at Mozimo." }, + { property: "og:url", content: "https://mozimo.in/about" }, + { name: "twitter:title", content: "About Us - Mozimo Chocolate" }, + { name: "twitter:description", content: "Discover the passionate pursuit of crafting exceptional chocolate at Mozimo." } ], links: [ { rel: "canonical", href: "https://mozimo.in/about" } @@ -48,7 +53,7 @@ const staggerContainer = { function AboutPage() { return ( -
+
{/* Hero Section */} @@ -433,6 +438,6 @@ function AboutPage() { }>
-
+ ); } diff --git a/src/app/index.tsx b/src/app/index.tsx index 6bff0a8..f6c93a3 100644 --- a/src/app/index.tsx +++ b/src/app/index.tsx @@ -13,6 +13,10 @@ const Footer = lazy(() => import("@/components/Footer")); export const Route = createFileRoute('/')({ component: Home, head: () => ({ + meta: [ + { title: "Mozimo - Premium Artisanal Chocolate" }, + { name: "description", content: "Experience the epitome of indulgence with our perfectly tempered chocolate. Mozimo's journey is a passionate pursuit of crafting exceptional chocolate." } + ], links: [ { rel: "canonical", href: "https://mozimo.in/" } ] @@ -135,7 +139,8 @@ function Home() { // Memoize expensive components return ( -
+
+

Mozimo - India's Premier European Style Bean to Bar Chocolate Experience

@@ -496,6 +501,6 @@ function Home() { }>
+ ); }