This commit is contained in:
2026-04-21 02:08:09 +00:00
parent 4930e6c6d2
commit cbdcf74bfc
4 changed files with 29 additions and 5 deletions
+3
View File
@@ -0,0 +1,3 @@
User-agent: *
Allow: /
Sitemap: https://mozimo.in/sitemap.xml
+11
View File
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://mozimo.in/</loc>
<priority>1.0</priority>
</url>
<url>
<loc>https://mozimo.in/about</loc>
<priority>0.8</priority>
</url>
</urlset>
+8 -3
View File
@@ -11,7 +11,12 @@ export const Route = createFileRoute('/about')({
head: () => ({ head: () => ({
meta: [ meta: [
{ title: "About Us - Mozimo Chocolate" }, { 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: [ links: [
{ rel: "canonical", href: "https://mozimo.in/about" } { rel: "canonical", href: "https://mozimo.in/about" }
@@ -48,7 +53,7 @@ const staggerContainer = {
function AboutPage() { function AboutPage() {
return ( return (
<div className="min-h-screen bg-white font-renner"> <main className="min-h-screen bg-white font-renner">
<Header /> <Header />
{/* Hero Section */} {/* Hero Section */}
@@ -433,6 +438,6 @@ function AboutPage() {
<Suspense fallback={<div className="h-[300px] w-full skeleton bg-gray-100 animate-pulse" />}> <Suspense fallback={<div className="h-[300px] w-full skeleton bg-gray-100 animate-pulse" />}>
<Footer /> <Footer />
</Suspense> </Suspense>
</div> </main>
); );
} }
+7 -2
View File
@@ -13,6 +13,10 @@ const Footer = lazy(() => import("@/components/Footer"));
export const Route = createFileRoute('/')({ export const Route = createFileRoute('/')({
component: Home, component: Home,
head: () => ({ 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: [ links: [
{ rel: "canonical", href: "https://mozimo.in/" } { rel: "canonical", href: "https://mozimo.in/" }
] ]
@@ -135,7 +139,8 @@ function Home() {
// Memoize expensive components // Memoize expensive components
return ( return (
<div className="min-h-screen bg-white font-renner"> <main className="min-h-screen bg-white font-renner">
<h1 className="sr-only">Mozimo - India's Premier European Style Bean to Bar Chocolate Experience</h1>
<Header /> <Header />
<BannerSlider /> <BannerSlider />
@@ -496,6 +501,6 @@ function Home() {
<Suspense fallback={<div className="h-[300px] w-full skeleton bg-gray-100 animate-pulse" />}> <Suspense fallback={<div className="h-[300px] w-full skeleton bg-gray-100 animate-pulse" />}>
<Footer /> <Footer />
</Suspense> </Suspense>
</div> </main>
); );
} }