Merge version_2 into main #4
@@ -1,58 +1,20 @@
|
||||
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";
|
||||
|
||||
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: "FlavorFind - Discover & Order Delicious Food Near You", description: "Discover trending dishes, filter by cuisine & price, order from top-rated restaurants. Fast food discovery platform for urban food lovers.", keywords: "food delivery, restaurant discovery, food ordering, local restaurants, food app", metadataBase: new URL("https://flavorfind.com"),
|
||||
alternates: {
|
||||
canonical: "https://flavorfind.com"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "FlavorFind - Discover & Order Delicious Food Near You", description: "Explore trending dishes and order from top-rated restaurants in seconds.", url: "https://flavorfind.com", siteName: "FlavorFind", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg", alt: "FlavorFind - Food Discovery Platform"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FlavorFind - Discover & Order Delicious Food Near You", description: "Explore trending dishes and order from top-rated restaurants in seconds.", images: ["http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg"],
|
||||
},
|
||||
};
|
||||
title: "FlavorFind - Discover Delicious Food Near You", description: "Explore trending dishes, filter by cuisine and price, and order from top-rated restaurants in seconds."};
|
||||
|
||||
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: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ export default function LandingPage() {
|
||||
<div id="featured" data-section="featured">
|
||||
<ProductCardTwo
|
||||
title="Featured Dishes This Week"
|
||||
description="Check out our handpicked selection of top-rated dishes from highly-rated restaurants near you. Pre-order now for quick delivery."
|
||||
description="Check out our handpicked selection of top-rated dishes from highly-rated restaurants near you. Pre-order now for quick delivery with guaranteed delivery within 30 minutes."
|
||||
tag="Trending Now"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user