8 Commits

Author SHA1 Message Date
4fcbabaa7f Update src/app/layout.tsx 2026-03-05 18:07:29 +00:00
c219ac8c39 Update src/app/page.tsx 2026-03-05 18:06:32 +00:00
85ee32b246 Update src/app/layout.tsx 2026-03-05 18:06:31 +00:00
45858d7ab4 Merge version_2 into main
Merge version_2 into main
2026-03-05 18:04:28 +00:00
be6f1d59a0 Update src/app/page.tsx 2026-03-05 18:04:24 +00:00
5fd8cef971 Update src/app/layout.tsx 2026-03-05 18:04:24 +00:00
b6b03f61fa Merge version_1 into main
Merge version_1 into main
2026-03-05 18:02:28 +00:00
7d99035add Merge version_1 into main
Merge version_1 into main
2026-03-05 18:01:21 +00:00
2 changed files with 13 additions and 61 deletions

View File

@@ -1,65 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FoodHub - Order Delicious Food Online | Best Food Delivery",
description: "Order food online from 500+ restaurants. Fast delivery, fresh meals, and exclusive deals. Download FoodHub today for delicious dining at your doorstep.",
keywords: "food delivery, online food ordering, restaurants, fast delivery, meal delivery service",
openGraph: {
title: "FoodHub - Your Favorite Food Delivered Fast",
description: "Discover amazing restaurants and get fresh food delivered in 30 minutes. Order now from FoodHub!",
siteName: "FoodHub",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/closeup-shot-restaurant-menu-set-black-plates-perfect-food-background_181624-58554.jpg",
alt: "FoodHub - Food Delivery Service",
},
],
},
twitter: {
card: "summary_large_image",
title: "FoodHub - Order Food Online",
description: "Fast, fresh, and delicious food delivery. Browse 500+ restaurants and order now!",
images: ["http://img.b2bpic.net/free-photo/closeup-shot-restaurant-menu-set-black-plates-perfect-food-background_181624-58554.jpg"],
},
title: "FoodHub - Food Delivery", description: "Discover delicious food delivered to your doorstep from your favorite local restaurants."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1427,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -74,13 +74,11 @@ export default function HomePage() {
title="Featured Restaurants"
description="Explore our curated selection of top-rated restaurants offering authentic cuisines and exceptional dining experiences."
tag="Popular"
tagIcon={Star}
products={[
{
id: "1", name: "Green Garden Bistro", price: "⭐ 4.8", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-20846.jpg", imageAlt: "Green Garden Bistro storefront"},
{
id: "2", name: "Spice Route Kitchen", price: "⭐ 4.6", imageSrc: "http://img.b2bpic.net/free-photo/exotically-spice-mix-spice-herbs-powder-top-view-dark-background-cooking-spicy-food-concept-copy-space-flat-lay-still-life_639032-1225.jpg", imageAlt: "Spice Route Kitchen storefront"},
{
id: "3", name: "Coastal Catches", price: "⭐ 4.9", imageSrc: "http://img.b2bpic.net/free-photo/seafood-side-dishes-with-platter-shrimp-squids-fish_140725-2576.jpg", imageAlt: "Coastal Catches storefront"},
{ id: "1", name: "Green Garden Bistro", price: "⭐ 4.8", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-20846.jpg", imageAlt: "Green Garden Bistro storefront"},
{ id: "2", name: "Spice Route Kitchen", price: "⭐ 4.6", imageSrc: "http://img.b2bpic.net/free-photo/exotically-spice-mix-spice-herbs-powder-top-view-dark-background-cooking-spicy-food-concept-copy-space-flat-lay-still-life_639032-1225.jpg", imageAlt: "Spice Route Kitchen storefront"},
{ id: "3", name: "Coastal Catches", price: "⭐ 4.9", imageSrc: "http://img.b2bpic.net/free-photo/seafood-side-dishes-with-platter-shrimp-squids-fish_140725-2576.jpg", imageAlt: "Coastal Catches storefront"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -191,4 +189,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}