diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6e2ddd0..8e0731f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -180,7 +180,7 @@ export default function AboutPage() { quote: "What a great welcome here! The staff were incredibly friendly and the coffee was excellent. The atmosphere is cozy, clean, and relaxing.", name: "Sarah Johnson", role: "Visitor", - imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-welcome-gesture_1149-1755.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-welcome-gesture_1149-1755.jpg?_wi=2", imageAlt: "Sarah Johnson", }, { @@ -189,7 +189,7 @@ export default function AboutPage() { quote: "The Royal Egg was absolute perfection. The staff went out of their way to make our experience special.", name: "Michael Chen", role: "Regular Guest", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-long-hair-talking-phone-coffee-shop_273609-2799.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-dark-long-hair-talking-phone-coffee-shop_273609-2799.jpg?_wi=2", imageAlt: "Michael Chen", }, { @@ -198,7 +198,7 @@ export default function AboutPage() { quote: "The mac and cheese was the best we've ever tasted.", name: "Emily Rodriguez", role: "Food Enthusiast", - imageSrc: "http://img.b2bpic.net/free-photo/two-smiling-male-female-colleagues-working-outdoor-cafe_1262-12596.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/two-smiling-male-female-colleagues-working-outdoor-cafe_1262-12596.jpg?_wi=2", imageAlt: "Emily Rodriguez", }, { @@ -207,7 +207,7 @@ export default function AboutPage() { quote: "Fresh ingredients, beautiful presentation, and amazing flavors. This is the kind of place you want to visit again and again.", name: "David Kim", role: "Chef", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-bistro_23-2149366429.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-bistro_23-2149366429.jpg?_wi=2", imageAlt: "David Kim", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..a195c0c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Farmers House - Luxury Bistro & Coffee in Abu Dhabi", + description: "Experience warm hospitality, fresh ingredients, and exceptional coffee at Farmers House. Located at the park entrance in Abu Dhabi.", + keywords: "Farmers House bistro, coffee Abu Dhabi, restaurant Abu Dhabi, fresh food, park cafe, luxury dining", + metadataBase: new URL("https://farmershouse.ae"), + alternates: { + canonical: "https://farmershouse.ae", + }, + openGraph: { + title: "Farmers House - Luxury Bistro & Coffee", + description: "A cozy culinary escape in the park with fresh ingredients and warm hospitality.", + url: "https://farmershouse.ae", + siteName: "Farmers House", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/high-angle-group-friends-restaurant_23-2148395334.jpg", + alt: "Farmers House - Fresh coffee and hospitality", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Farmers House - Luxury Bistro & Coffee", + description: "A cozy culinary escape in the park with fresh ingredients and warm hospitality.", + images: ["http://img.b2bpic.net/free-photo/high-angle-group-friends-restaurant_23-2148395334.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}