diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c33093d..ff5c465 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Happy Waffles - Best Waffles in Vile Parle, Mumbai | 5.0 Rated", description: "Discover Mumbai's most loved waffles in Vile Parle. Fresh, crispy, and delicious. Open 9 PM. Call now or order on WhatsApp for bulk orders and late-night cravings.", keywords: "best waffles Vile Parle, waffles Mumbai, Kit Kat waffle, late night dessert, waffle delivery, bulk waffle orders, 5 star waffles", metadataBase: new URL("https://happywaffles.com"), - alternates: { - canonical: "https://happywaffles.com"}, - openGraph: { - title: "Happy Waffles - Best Waffles in Vile Parle, Mumbai", description: "Crispy outside, soft inside. Premium quality waffles at affordable prices. 5.0 rated by 150+ customers. Open 9 PM onwards.", url: "https://happywaffles.com", siteName: "Happy Waffles", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-shot-delicious-waffles-with-chocolate-dip-white-table_181624-35642.jpg", alt: "Happy Waffles - Premium waffle experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Happy Waffles - Best Waffles in Vile Parle", description: "Fresh, crispy waffles made with love. 5.0 rating. Order now via WhatsApp or call!", images: ["http://img.b2bpic.net/free-photo/vertical-shot-delicious-waffles-with-chocolate-dip-white-table_181624-35642.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Happy Waffles - Mumbai's Most Loved Waffles", description: "Perfectly crispy waffles with rich chocolate flavor. 5.0 rated in Vile Parle. Open late at night. Order now!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children} - ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 5594988..c62a996 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,13 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Gift, Heart, Star, Utensils } from "lucide-react"; +import { Gift, Heart, Star, Utensils, ShoppingCart } from "lucide-react"; export default function LandingPage() { + const handleOrderClick = () => { + window.open('https://wa.me/919876543210', '_blank'); + }; + return ( + + + + Order Your Favorite + + + + + + Order Now + +