diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 509013c..4c1a562 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,13 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; +import { Poppins } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ @@ -15,7 +15,7 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "Eat App - Restaurant Operations Platform | Pain Points & Solutions", description: "Discover how Eat App solves 20+ critical restaurant operational challenges with our integrated reservation and guest management platform.", keywords: "restaurant management, reservations, guest profiles, loyalty, analytics, restaurant software", metadataBase: new URL("https://eatapp.co"), + title: "Eat App - Restaurant Operations Platform | Grow Your Restaurant", description: "Grow your Restaurant with Eat - the end-to-end dining experience solution that solves 20+ operational bottlenecks for restaurant owners.", keywords: "restaurant management, reservations, guest profiles, loyalty, analytics, restaurant software", metadataBase: new URL("https://eatapp.co"), alternates: { canonical: "https://eatapp.co"}, robots: { @@ -23,13 +23,13 @@ export const metadata: Metadata = { follow: true, }, openGraph: { - title: "Eat App - Restaurant Operations Solutions", description: "20 Pain Points Solved by Eat App's Integrated Platform", url: "https://eatapp.co", siteName: "Eat App", type: "website", images: [ + title: "Eat App - Restaurant Operations Solutions", description: "Grow your Restaurant with Eat - End-to-End Dining Experience Solution", url: "https://eatapp.co", siteName: "Eat App", type: "website", images: [ { url: "https://eatapp.co/og-image.jpg", alt: "Eat App Platform"}, ], }, twitter: { - card: "summary_large_image", title: "Eat App - Restaurant Operations Platform", description: "Solve 20+ restaurant operational challenges with Eat App", images: ["https://eatapp.co/twitter-image.jpg"], + card: "summary_large_image", title: "Eat App - Restaurant Operations Platform", description: "Grow your Restaurant with Eat - End-to-End Dining Experience Solution", images: ["https://eatapp.co/twitter-image.jpg"], }, }; @@ -42,7 +42,7 @@ export default function RootLayout({ {children}