From e3d6ff85dee7a2f2b3443263792b3cf3b9f01cd0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 03:51:07 +0000 Subject: [PATCH 1/4] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index b67cd23..44bc7e7 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -86,7 +86,7 @@ const GalleryPage = () => { descriptions: [ "Experience the magical golden hour over rice fields", ], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-gavi-hillside-piedmont-italy-sunset_181624-52111.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-gavi-hillside-piedmont-italy-sunset_181624-52111.jpg?_wi=2", }, { id: "cafe", @@ -94,7 +94,7 @@ const GalleryPage = () => { descriptions: [ "Warm, inviting spaces perfect for relaxation", ], - imageSrc: "http://img.b2bpic.net/free-photo/table-outdoor-cafe_23-2147731688.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/table-outdoor-cafe_23-2147731688.jpg?_wi=2", }, { id: "farm-work", @@ -102,7 +102,7 @@ const GalleryPage = () => { descriptions: [ "The rhythms of sustainable farm life", ], - imageSrc: "http://img.b2bpic.net/free-photo/exhausted-teamworking-farmers-working-hard-maximize-naturally-grown-certified-organic-nutritious-bio-vegan-food-crop-harvest-yields-entrepreneurial-non-gmo-certified-organic-greenhouse_482257-65843.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/exhausted-teamworking-farmers-working-hard-maximize-naturally-grown-certified-organic-nutritious-bio-vegan-food-crop-harvest-yields-entrepreneurial-non-gmo-certified-organic-greenhouse_482257-65843.jpg?_wi=2", }, { id: "coffee-prep", @@ -110,7 +110,7 @@ const GalleryPage = () => { descriptions: [ "Carefully prepared single-origin espresso", ], - imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648686.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648686.jpg?_wi=2", }, { id: "outdoor-seating", @@ -118,7 +118,7 @@ const GalleryPage = () => { descriptions: [ "Enjoy meals surrounded by nature", ], - imageSrc: "http://img.b2bpic.net/free-photo/smiley-people-sitting-table-medium-shot_23-2149001341.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiley-people-sitting-table-medium-shot_23-2149001341.jpg?_wi=2", }, { id: "community", @@ -126,7 +126,7 @@ const GalleryPage = () => { descriptions: [ "Where locals and visitors gather peacefully", ], - imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598423.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598423.jpg?_wi=2", }, ]} ariaLabel="Hay Day Coffee Farm gallery" From eba55ebeb3ba84137b1fbd778199d9843f81354a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 03:51:07 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..f7bf6fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,37 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Hay Day Coffee & Farm | Chiang Rai Thailand", + description: "Cozy café and farm in Ban Nong Pla Sadet, Chiang Saen. Single-origin coffee, fresh farm produce, and peaceful rice field atmosphere inspired by Hay Day. Open daily 08:30-19:00.", + keywords: "coffee café, farm shop, Chiang Rai, Thailand, single-origin, farm fresh, Chiang Saen, Ban Nong Pla Sadet", + metadataBase: new URL("https://haydaycoffee.com"), + alternates: { + canonical: "https://haydaycoffee.com", + }, + openGraph: { + title: "Hay Day Coffee & Farm", + description: "Where the Farm Comes to Life - Cozy café and farm with single-origin coffee and fresh produce", + url: "https://haydaycoffee.com", + siteName: "Hay Day Coffee & Farm", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/romantic-date-couple-love-cafe-happy-couple-love-enjoying-romantic-moment_8353-6650.jpg", + alt: "Hay Day Coffee & Farm café with rice field views", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Hay Day Coffee & Farm", + description: "Cozy café and farm in Chiang Rai - Single-origin coffee meets farm fresh produce", + images: [ + "http://img.b2bpic.net/free-photo/romantic-date-couple-love-cafe-happy-couple-love-enjoying-romantic-moment_8353-6650.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +63,9 @@ export default function RootLayout({ return ( - + {children}