Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +77,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -87,7 +87,7 @@ const MenuPage = () => {
|
||||
price: "80 THB",
|
||||
rating: 5,
|
||||
reviewCount: "245",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-coffee-beans-glass-tea-marble-table_114579-40099.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-coffee-beans-glass-tea-marble-table_114579-40099.jpg?_wi=2",
|
||||
imageAlt: "single origin espresso shot close up dark",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ const MenuPage = () => {
|
||||
price: "95 THB",
|
||||
rating: 5,
|
||||
reviewCount: "312",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-barista-pours-milk-into-cup-coffee_141793-17485.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-barista-pours-milk-into-cup-coffee_141793-17485.jpg?_wi=2",
|
||||
imageAlt: "cappuccino latte art foam cup white",
|
||||
},
|
||||
{
|
||||
@@ -107,7 +107,7 @@ const MenuPage = () => {
|
||||
price: "85 THB",
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648697.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648697.jpg?_wi=2",
|
||||
imageAlt: "cold brew iced coffee glass ice cubes",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ const MenuPage = () => {
|
||||
price: "60 THB",
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-holding-hat-with-eggs_23-2149456967.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-holding-hat-with-eggs_23-2149456967.jpg?_wi=2",
|
||||
imageAlt: "fresh farm eggs basket brown white",
|
||||
},
|
||||
{
|
||||
@@ -127,7 +127,7 @@ const MenuPage = () => {
|
||||
price: "120 THB",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-cake-cake-basket-apples-chocolate-sauce-berries-raisins-spikelets_140725-72588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-cake-cake-basket-apples-chocolate-sauce-berries-raisins-spikelets_140725-72588.jpg?_wi=2",
|
||||
imageAlt: "fresh seasonal vegetables bundle farm produce",
|
||||
},
|
||||
{
|
||||
@@ -137,7 +137,7 @@ const MenuPage = () => {
|
||||
price: "75 THB",
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-with-ice-cream_23-2147896695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-with-ice-cream_23-2147896695.jpg?_wi=2",
|
||||
imageAlt: "homemade ice cream creamy scoop bowl",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -106,7 +106,7 @@ export default function HomePage() {
|
||||
price: "80 THB",
|
||||
rating: 5,
|
||||
reviewCount: "245",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-coffee-beans-glass-tea-marble-table_114579-40099.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-chocolate-cake-coffee-beans-glass-tea-marble-table_114579-40099.jpg?_wi=1",
|
||||
imageAlt: "Freshly pulled single-origin espresso shot",
|
||||
},
|
||||
{
|
||||
@@ -116,7 +116,7 @@ export default function HomePage() {
|
||||
price: "95 THB",
|
||||
rating: 5,
|
||||
reviewCount: "312",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-barista-pours-milk-into-cup-coffee_141793-17485.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-barista-pours-milk-into-cup-coffee_141793-17485.jpg?_wi=1",
|
||||
imageAlt: "Creamy cappuccino with latte art",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function HomePage() {
|
||||
price: "85 THB",
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648697.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648697.jpg?_wi=1",
|
||||
imageAlt: "Refreshing cold brew iced coffee",
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@ export default function HomePage() {
|
||||
price: "60 THB",
|
||||
rating: 5,
|
||||
reviewCount: "156",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-holding-hat-with-eggs_23-2149456967.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-holding-hat-with-eggs_23-2149456967.jpg?_wi=1",
|
||||
imageAlt: "Basket of fresh farm eggs",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function HomePage() {
|
||||
price: "120 THB",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-cake-cake-basket-apples-chocolate-sauce-berries-raisins-spikelets_140725-72588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-cake-cake-basket-apples-chocolate-sauce-berries-raisins-spikelets_140725-72588.jpg?_wi=1",
|
||||
imageAlt: "Fresh seasonal vegetables from the farm",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function HomePage() {
|
||||
price: "75 THB",
|
||||
rating: 5,
|
||||
reviewCount: "267",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-with-ice-cream_23-2147896695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-with-ice-cream_23-2147896695.jpg?_wi=1",
|
||||
imageAlt: "Creamy homemade ice cream",
|
||||
},
|
||||
]}
|
||||
@@ -179,37 +179,37 @@ export default function HomePage() {
|
||||
id: "sunrise",
|
||||
title: "Golden Sunrise",
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "cafe",
|
||||
title: "Cozy Café Interior",
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "farm-work",
|
||||
title: "Harvest Season",
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "coffee-prep",
|
||||
title: "Coffee Craft",
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "outdoor-seating",
|
||||
title: "Farm Views Dining",
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "community",
|
||||
title: "Community Moments",
|
||||
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=1",
|
||||
},
|
||||
]}
|
||||
ariaLabel="Hay Day Coffee Farm gallery"
|
||||
|
||||
Reference in New Issue
Block a user