5 Commits

Author SHA1 Message Date
8b735bab2f Update src/app/page.tsx 2026-03-07 15:15:57 +00:00
141eaeae87 Update src/app/layout.tsx 2026-03-07 15:15:56 +00:00
3111937eef Merge version_1 into main
Merge version_1 into main
2026-03-07 15:15:09 +00:00
906663d94e Merge version_1 into main
Merge version_1 into main
2026-03-07 15:14:18 +00:00
1561e2b1c0 Merge version_1 into main
Merge version_1 into main
2026-03-07 15:13:13 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Dev Mart - Local Grocery Supermarket in Mandla", description: "Dev Mart is your trusted local grocery supermarket in Mandla serving fresh vegetables, fruits, dairy, and household essentials. Open daily 9:30 AM. 4.1★ rating.", keywords: "grocery store Mandla, fresh vegetables, supermarket, local store, household essentials, dairy products", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Dev Mart - Mandala Walon Ki Apni Dukaan", description: "Your trusted local grocery supermarket with fresh products and excellent service.", type: "website", siteName: "Dev Mart", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-shopping-supermarket_53876-13562.jpg", alt: "Dev Mart Grocery Store"},
],
},
twitter: {
card: "summary_large_image", title: "Dev Mart - Local Grocery Store Mandla", description: "Fresh groceries and excellent service - Dev Mart", images: ["http://img.b2bpic.net/free-photo/woman-shopping-supermarket_53876-13562.jpg"],
},
};
title: "Dev Mart - Mandala Walon Ki Apni Dukaan", description: "Your trusted local grocery supermarket in Mandla serving fresh vegetables, quality dairy, and everyday essentials."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitTestimonial
title="Dev Mart - Mandala Walon Ki Apni Dukaan"
description="Your trusted local grocery supermarket serving the Mandla community with fresh vegetables, quality dairy, and everyday essentials. Shop conveniently at Dev Mart, open daily from 9:30 AM."
description="Your trusted local grocery supermarket serving the Mandla community with fresh vegetables, quality dairy, and everyday essentials. Shop conveniently at Dev Mart, open daily from 9:30 AM. Call us: 086928 32004"
tag="Local Grocery Store"
tagIcon={ShoppingCart}
tagAnimation="slide-up"
@@ -71,7 +71,7 @@ export default function LandingPage() {
]}
testimonialRotationInterval={5000}
buttons={[
{ text: "Call Now: 086928 32004", href: "tel:086928320041" },
{ text: "Call Now", href: "tel:086928320041" },
{ text: "Get Directions", href: "https://maps.google.com/?q=Dev+Mart+Mandla" }
]}
buttonAnimation="slide-up"