Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 02:35:13 +00:00
2 changed files with 14 additions and 41 deletions

View File

@@ -1,48 +1,22 @@
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";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './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 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: "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: {
index: true,
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"},
title: 'Delhi Mithaiwala',
description: 'Authentic Veg Bakery & Chat Shop',
};
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: `
@@ -1410,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,7 +8,7 @@ import FeatureHoverPattern from '@/components/sections/feature/featureHoverPatte
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactFaq from '@/components/sections/contact/ContactFaq';
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() {
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."
}
]}
ctaTitle="Visit Us Today"
ctaDescription="Come experience authentic taste and warmth of Delhi Mithaiwala. Open until 9:30 PM daily."
ctaTitle="Visit Us Today — Open Until 9:30 PM"
ctaDescription="Come experience authentic taste and warmth of Delhi Mithaiwala."
ctaButton={{
text: "Get Directions", href: "https://maps.google.com/?q=9QFG+CPG,+IB+Chowk,+Boyawada,+Utnur,+Telangana+504311"
}}
ctaIcon={MapPin}
ctaIcon={Clock}
animationType="slide-up"
useInvertedBackground={false}
accordionAnimationType="smooth"