5 Commits

Author SHA1 Message Date
e5084660cb Update src/app/page.tsx 2026-03-06 02:35:09 +00:00
9fcc883ae3 Update src/app/layout.tsx 2026-03-06 02:35:09 +00:00
2146b6de4f Merge version_1 into main
Merge version_1 into main
2026-03-06 02:33:40 +00:00
c6a206251b Merge version_1 into main
Merge version_1 into main
2026-03-06 02:32:30 +00:00
ed4f58682c Merge version_1 into main
Merge version_1 into main
2026-03-06 02:31:26 +00:00
2 changed files with 14 additions and 41 deletions

View File

@@ -1,48 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Inter } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ['latin'] });
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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Delhi Mithaiwala Veg Bakery & Chat - Fresh Sweets & Snacks Utnur", description: "Authentic vegetarian bakery & chat shop in Utnur serving fresh sweets, pastries, and traditional snacks. Family-friendly dine-in. 4.2★ rated. Call 070954 76581.", keywords: "veg bakery Utnur, Indian sweets, badam milk, chat shop, vegetarian bakery, mithai shop, Telangana", robots: { title: 'Delhi Mithaiwala',
index: true, description: 'Authentic Veg Bakery & Chat Shop',
follow: true,
},
openGraph: {
title: "Delhi Mithaiwala - Authentic Veg Bakery & Chat", description: "Fresh homemade sweets, bakery items, and traditional snacks with premium quality and hygiene standards.", url: "https://delhimithaiwala.local", siteName: "Delhi Mithaiwala Veg Bakery & Chat", type: "website"},
}; };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1410,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -8,7 +8,7 @@ import FeatureHoverPattern from '@/components/sections/feature/featureHoverPatte
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { Cake, Croissant, Coffee, Users, Car, Sparkles, Store, Heart, UtensilsCrossed, MapPin } from 'lucide-react'; import { Cake, Croissant, Coffee, Users, Car, Sparkles, Store, Heart, UtensilsCrossed, MapPin, Clock } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -149,12 +149,12 @@ export default function LandingPage() {
id: "6", title: "How do I find your location?", content: "We are located at 9QFG+CPG, IB Chowk, Boyawada, Utnur, Telangana 504311. You can view directions, ratings, and reviews on our Google listing. Look for Delhi Mithaiwala in IB Chowk area." id: "6", title: "How do I find your location?", content: "We are located at 9QFG+CPG, IB Chowk, Boyawada, Utnur, Telangana 504311. You can view directions, ratings, and reviews on our Google listing. Look for Delhi Mithaiwala in IB Chowk area."
} }
]} ]}
ctaTitle="Visit Us Today" ctaTitle="Visit Us Today — Open Until 9:30 PM"
ctaDescription="Come experience authentic taste and warmth of Delhi Mithaiwala. Open until 9:30 PM daily." ctaDescription="Come experience authentic taste and warmth of Delhi Mithaiwala."
ctaButton={{ ctaButton={{
text: "Get Directions", href: "https://maps.google.com/?q=9QFG+CPG,+IB+Chowk,+Boyawada,+Utnur,+Telangana+504311" text: "Get Directions", href: "https://maps.google.com/?q=9QFG+CPG,+IB+Chowk,+Boyawada,+Utnur,+Telangana+504311"
}} }}
ctaIcon={MapPin} ctaIcon={Clock}
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
accordionAnimationType="smooth" accordionAnimationType="smooth"