Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 13:53:30 +00:00
2 changed files with 41 additions and 68 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Mouli's Bistro - Best Burgers, Mojitos & Milkshakes in Tondiarpet", description: "Delicious bistro treats in Tondiarpet, Chennai. Fresh burgers, fries, mojitos, milkshakes & ice creams. Open 11 AM - 10 PM. Call 98419 97448 to order.", keywords: "bistro tondiarpet, restaurant chennai, burgers tondiarpet, mojitos chennai, milkshakes near washermenpet, affordable restaurant, casual dining", metadataBase: new URL("https://example.com"),
openGraph: {
title: "Mouli's Bistro - Fresh Food & Drinks", description: "Experience delicious bistro treats - burgers, mojitos, milkshakes, and more at Mouli's Bistro in Tondiarpet.", siteName: "Mouli's Bistro", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWpQ6Dsy1MmPLXT39nMif1ZpHT/uploaded-1772718184795-3bvre1om.jpg", alt: "Mouli's Bistro signature drink"},
],
},
twitter: {
card: "summary_large_image", title: "Mouli's Bistro - Best Burgers & Mojitos in Tondiarpet", description: "Fresh, delicious food and drinks. Call 98419 97448 to order.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWpQ6Dsy1MmPLXT39nMif1ZpHT/uploaded-1772718184795-3bvre1om.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Mouli's Bistro - Fresh Food, Great Mood", description: "Delicious bistro treats in Tondiarpet. Fresh burgers, crispy fries, mojitos, and milkshakes."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -7,9 +7,8 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Star, Flame, CheckCircle, Heart, MapPin } from "lucide-react";
import { Star, Flame, CheckCircle, Heart, MapPin, Phone, MapPinIcon } from "lucide-react";
export default function LandingPage() {
return (
@@ -190,35 +189,40 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "#home" },
{ label: "Menu", href: "#menu" },
{ label: "Popular Items", href: "#popular" },
{ label: "Reviews", href: "#reviews" },
],
},
{
title: "Get in Touch", items: [
{ label: "Call: 98419 97448", href: "tel:98419 97448" },
{ label: "WhatsApp", href: "https://wa.me/98419 97448" },
{ label: "Location", href: "#location" },
{ label: "Hours: 11 AM - 10 PM", href: "#" },
],
},
{
title: "Social", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" },
],
},
]}
bottomLeftText="© 2025 Mouli's Bistro. All rights reserved."
bottomRightText="Good Food. Good Mood. 🍔"
/>
<footer className="w-full py-16 lg:py-20 bg-background">
<div className="w-content-width mx-auto px-vw-1_5">
<div className="space-y-8">
<div className="space-y-6">
<h2 className="text-2xl lg:text-3xl font-semibold text-foreground">Mouli's Bistro</h2>
<div className="space-y-4 text-foreground/80">
<div className="flex items-start gap-3">
<Phone className="w-5 h-5 mt-0.5 flex-shrink-0" />
<div className="flex flex-col">
<span className="text-sm lg:text-base font-medium">Phone</span>
<a href="tel:98419 97448" className="text-base lg:text-lg font-light hover:text-foreground transition-colors">
98419 97448
</a>
</div>
</div>
<div className="flex items-start gap-3">
<MapPinIcon className="w-5 h-5 mt-0.5 flex-shrink-0" />
<div className="flex flex-col">
<span className="text-sm lg:text-base font-medium">Address</span>
<p className="text-base lg:text-lg font-light leading-relaxed">
Lakshmi Kovil Bus Stop, 92/305 Thiruvottiyur High Rd, New Washermenpet, Tondiarpet, Chennai, Tamil Nadu 600081
</p>
</div>
</div>
</div>
</div>
<div className="pt-8 border-t border-accent/20">
<p className="text-sm lg:text-base text-foreground/60 font-light">
© 2025 Mouli's Bistro. All rights reserved.
</p>
</div>
</div>
</div>
</footer>
</div>
</ThemeProvider>
);