From 3cc394d69aa96fd7c303e3665e7977e992fc31e3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Feb 2026 12:34:10 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 48 +++++++++--------------------------------- 1 file changed, 10 insertions(+), 38 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d698a6f..f8447fb 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,32 +8,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from 'next/link'; -const assetMap = { - "coffee-shop-interior": { url: "https://img.b2bpic.net/free-photo/man-apron-preparing-coffee-machine_23-2148366708.jpg", alt: "coffee shop interior barista making coffee cozy cafe coffee beans" }, - "freshly-brewed-coffee": { url: "https://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135317.jpg", alt: "freshly brewed coffee coffee cup steam coffee latte art" }, - "pastries-display": { url: "https://img.b2bpic.net/free-photo/portrait-smiling-waitress-using-coffee-machine_107420-12297.jpg", alt: "pastries display bakery counter croissants muffins dessert tray" }, - "latte-art": { url: "https://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-134687.jpg", alt: "latte art coffee foam heart latte coffee design" }, - "coffee-beans-roasting": { url: "https://img.b2bpic.net/free-photo/close-up-image-man-preparing-cappuccino-coffee-machine_613910-8868.jpg", alt: "coffee beans roasting fresh coffee beans roastery coffee process" }, - "barista-at-work": { url: "https://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", alt: "barista at work making coffee coffee preparation espresso machine" }, - "customer-review-avatar-1": { url: "https://img.b2bpic.net/free-photo/male-barista-preparing-cappuccino-coffee-shop_1303-29343.jpg", alt: "happy customer portrait smiling woman coffee cafe visitor person drinking coffee" }, - "customer-review-avatar-2": { url: "https://img.b2bpic.net/free-photo/close-up-barista-female-hands-pressing-coffee-into-tamper-prepares-order-cafe-counter_1258-203404.jpg", alt: "man enjoying coffee cafe customer smiling customer testimonial person relaxing cafe" }, - "customer-review-avatar-3": { url: "https://img.b2bpic.net/free-photo/smiling-waiter-making-cup-coffee_1170-577.jpg", alt: "young woman coffee shop satisfied customer coffee experience portrait smile cafe" }, - "customer-review-avatar-4": { url: "https://img.b2bpic.net/free-photo/high-angle-male-making-coffee_23-2148366604.jpg", alt: "older man coffee shop review coffee happy patron coffee break portrait" }, - "cozy-cafe-setting": { url: "https://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg", alt: "cozy cafe setting comfortable seating coffee shop decor warm ambiance" } -}; - -function resolveAsset(id) { - if (!id || !id.startsWith("asset://")) { - return { url: id, alt: "" }; - } - const assetKey = id.replace("asset://", ""); - const asset = assetMap[assetKey]; - if (asset) { - return { url: asset.url, alt: asset.alt }; - } - return { url: "/placeholders/placeholder1.webp", alt: "Placeholder image" }; -} - export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, @@ -70,8 +44,7 @@ export default function AboutPage() {