Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-12 02:55:50 +00:00
6 changed files with 73 additions and 36 deletions

View File

@@ -94,7 +94,7 @@ export default function AboutPage() {
title: "100% Organic Dairy",
description: "We partner with local organic dairies to ensure every scoop meets the highest standards. No artificial additives, just pure, handcrafted ice cream.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg?_wi=3",
},
items: [
{
@@ -117,7 +117,7 @@ export default function AboutPage() {
title: "Vegan & Allergy-Friendly",
description: "We create indulgent vegan sorbets and understand dietary restrictions. Every flavor is clearly labeled for your peace of mind.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg?_wi=4",
},
items: [
{
@@ -140,7 +140,7 @@ export default function AboutPage() {
title: "Handmade Daily",
description: "Our small-batch approach means fresh ice cream daily. You taste the difference in every bite.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg?_wi=3",
},
items: [
{
@@ -167,7 +167,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg?_wi=3"
imageAlt="Mission District San Francisco storefront"
logoText="Garden Creamery"
copyrightText="© 2025 Garden Creamery | Organic Ice Cream SF"

View File

@@ -106,7 +106,7 @@ export default function CateringPage() {
id: "3",
name: "Custom Flavor Creation",
price: "Starting $300",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg?_wi=3",
imageAlt: "Ice cream sandwich cookie homemade",
},
]}
@@ -168,7 +168,7 @@ export default function CateringPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg?_wi=4"
imageAlt="Mission District San Francisco storefront"
logoText="Garden Creamery"
copyrightText="© 2025 Garden Creamery | Organic Ice Cream SF"

View File

@@ -116,7 +116,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg?_wi=5"
imageAlt="Mission District San Francisco storefront"
logoText="Garden Creamery"
copyrightText="© 2025 Garden Creamery | Organic Ice Cream SF"

View File

@@ -1,28 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } 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 { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Garden Creamery | Organic Ice Cream San Francisco",
description: "Small-batch organic ice cream with unique Asian-inspired flavors in the Mission District. Vegan sorbets, local ingredients, event catering.",
keywords: "ice cream San Francisco, organic ice cream SF, Mission District ice cream, vegan sorbet, Asian ice cream flavors, matcha ice cream, ube pandan, ice cream catering SF",
metadataBase: new URL("https://gardencreamery.com"),
alternates: {
canonical: "https://gardencreamery.com",
},
openGraph: {
title: "Garden Creamery | Small-Batch Organic Ice Cream",
description: "Discover unique Asian-inspired flavors crafted daily with local ingredients in San Francisco's Mission District.",
url: "https://gardencreamery.com",
siteName: "Garden Creamery",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/pistachio-ice-cream_658428-311.jpg",
alt: "Garden Creamery organic ice cream",
},
],
},
twitter: {
card: "summary_large_image",
title: "Garden Creamery | Organic Ice Cream SF",
description: "Small-batch ice cream with Asian-inspired flavors. Vegan options, local ingredients, catering.",
images: [
"http://img.b2bpic.net/free-photo/pistachio-ice-cream_658428-311.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -46,42 +46,42 @@ export default function MenuPage() {
id: "1",
name: "Ube Pandan",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/violet-liquid-with-light-foam-blobs_23-2147934223.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/violet-liquid-with-light-foam-blobs_23-2147934223.jpg?_wi=2",
imageAlt: "Ube Pandan ice cream",
},
{
id: "2",
name: "Black Sesame",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-winter-dessert-with-almonds_23-2148312088.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-winter-dessert-with-almonds_23-2148312088.jpg?_wi=2",
imageAlt: "Black Sesame ice cream",
},
{
id: "3",
name: "Thai Tea",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/japanese-melon-cantaloupe-cantaloupe-seasonal-fruit-health-concept_1150-23398.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/japanese-melon-cantaloupe-cantaloupe-seasonal-fruit-health-concept_1150-23398.jpg?_wi=2",
imageAlt: "Thai Tea ice cream",
},
{
id: "4",
name: "Matcha",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg?_wi=2",
imageAlt: "Matcha ice cream",
},
{
id: "5",
name: "Vegan Berry Sorbet",
price: "$6.00",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg?_wi=3",
imageAlt: "Vegan Berry Sorbet",
},
{
id: "6",
name: "Ice Cream Sandwich",
price: "$7.50",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg?_wi=2",
imageAlt: "Ice Cream Sandwich",
},
]}
@@ -102,7 +102,7 @@ export default function MenuPage() {
title: "Organic Dairy Base",
description: "We start with organic dairy from local San Francisco Bay Area farms. Our cream and milk are never treated with hormones or antibiotics.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg?_wi=2",
},
items: [
{
@@ -125,7 +125,7 @@ export default function MenuPage() {
title: "Artisan Flavor Crafting",
description: "Our Asian-inspired flavors come from authentic sources. Real matcha from Japan, ube from the Philippines, black sesame from Korea—no artificial extracts.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg?_wi=3",
},
items: [
{
@@ -148,7 +148,7 @@ export default function MenuPage() {
title: "Handcrafted Daily",
description: "We make ice cream fresh every single day. Our small-batch process takes 6-8 hours from mixing to scooping, ensuring peak freshness and texture.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg?_wi=2",
},
items: [
{
@@ -175,7 +175,7 @@ export default function MenuPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg?_wi=2"
imageAlt="Mission District San Francisco storefront"
logoText="Garden Creamery"
copyrightText="© 2025 Garden Creamery | Organic Ice Cream SF"

View File

@@ -84,42 +84,42 @@ export default function HomePage() {
id: "1",
name: "Ube Pandan",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/violet-liquid-with-light-foam-blobs_23-2147934223.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/violet-liquid-with-light-foam-blobs_23-2147934223.jpg?_wi=1",
imageAlt: "Ube Pandan ice cream",
},
{
id: "2",
name: "Black Sesame",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-winter-dessert-with-almonds_23-2148312088.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-winter-dessert-with-almonds_23-2148312088.jpg?_wi=1",
imageAlt: "Black Sesame ice cream",
},
{
id: "3",
name: "Thai Tea",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/japanese-melon-cantaloupe-cantaloupe-seasonal-fruit-health-concept_1150-23398.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/japanese-melon-cantaloupe-cantaloupe-seasonal-fruit-health-concept_1150-23398.jpg?_wi=1",
imageAlt: "Thai Tea ice cream",
},
{
id: "4",
name: "Matcha",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/nice-chocolate-pistachio-ice-cream-decorated-with-mint-waffle-cones-with-scattered-pistachios-are-nearby-served-with-metal-scoop-stone-slate-black-background-close-up_639032-913.jpg?_wi=1",
imageAlt: "Matcha ice cream",
},
{
id: "5",
name: "Vegan Berry Sorbet",
price: "$6.00",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg?_wi=1",
imageAlt: "Vegan Berry Sorbet",
},
{
id: "6",
name: "Ice Cream Sandwich",
price: "$7.50",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-boiled-eggs-with-toast-bread-wood-piece_114579-73836.jpg?_wi=1",
imageAlt: "Ice Cream Sandwich",
},
]}
@@ -140,7 +140,7 @@ export default function HomePage() {
title: "100% Organic Dairy",
description: "We partner with local organic dairies to ensure every scoop meets the highest standards. No artificial additives, just pure, handcrafted ice cream.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/person-buying-garlic-from-market-place-high-view_23-2148648907.jpg?_wi=1",
},
items: [
{
@@ -163,7 +163,7 @@ export default function HomePage() {
title: "Vegan & Allergy-Friendly",
description: "We create indulgent vegan sorbets and understand dietary restrictions. Every flavor is clearly labeled for your peace of mind.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ice-cream-with-mixed-fruit_1339-4926.jpg?_wi=2",
},
items: [
{
@@ -186,7 +186,7 @@ export default function HomePage() {
title: "Handmade Daily",
description: "Our small-batch approach means fresh ice cream daily. You taste the difference in every bite.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/served-delicious-biscuit-stand_23-2147693549.jpg?_wi=1",
},
items: [
{
@@ -355,7 +355,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg"
imageSrc="http://img.b2bpic.net/free-photo/group-friends-talking-outside-clothing-store-city_23-2149295738.jpg?_wi=1"
imageAlt="Mission District San Francisco storefront"
logoText="Garden Creamery"
copyrightText="© 2025 Garden Creamery | Organic Ice Cream SF"