From 374c6f95197093bb43f86475cf3a25e36ca017e9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 16:15:19 +0000 Subject: [PATCH 1/5] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 79bfddb..4495342 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -78,7 +78,7 @@ export default function GalleryPage() { category: "Coffee", title: "Specialty Coffee Art", excerpt: "Experience our expertly crafted latte art and specialty brews prepared with precision.", - imageSrc: "http://img.b2bpic.net/free-photo/shoemaker-workshop-making-shoes_171337-12284.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/shoemaker-workshop-making-shoes_171337-12284.jpg?_wi=5", imageAlt: "Latte art specialty coffee", authorName: "Workspace Barista Team", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-young-woman-wearing-big-hat_273609-13397.jpg", @@ -89,7 +89,7 @@ export default function GalleryPage() { category: "Pastries", title: "Fresh Pastry Selection", excerpt: "Daily fresh pastries and baked goods to complement your morning coffee.", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegan-baked-products-arrangement_23-2150166002.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegan-baked-products-arrangement_23-2150166002.jpg?_wi=3", imageAlt: "Fresh pastries display", authorName: "Workspace Pastry Chef", authorAvatar: "http://img.b2bpic.net/free-photo/happy-young-handsome-man-sitting-cafe-table_1262-975.jpg", @@ -100,7 +100,7 @@ export default function GalleryPage() { category: "Interior", title: "Perfect Workspace", excerpt: "Comfortable seating and productive ambiance for remote workers and students.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-guy-young-man-sits-cafe-watching-videos-digital-tablet-wearing-wireless-headphones-laughing-smiling-spending-time-coffee-shop_1258-314665.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-guy-young-man-sits-cafe-watching-videos-digital-tablet-wearing-wireless-headphones-laughing-smiling-spending-time-coffee-shop_1258-314665.jpg?_wi=2", imageAlt: "Comfortable workspace seating", authorName: "Workspace Team", authorAvatar: "http://img.b2bpic.net/free-photo/sunlight-falling-serene-young-woman-s-face_23-2147890771.jpg", @@ -111,7 +111,7 @@ export default function GalleryPage() { category: "Desserts", title: "Dessert Showcase", excerpt: "Indulge in our collection of homemade and artisan desserts.", - imageSrc: "http://img.b2bpic.net/free-photo/eclairs-wooden-platter-with-drink_114579-18516.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/eclairs-wooden-platter-with-drink_114579-18516.jpg?_wi=2", imageAlt: "Dessert platter selection", authorName: "Workspace Dessert Team", authorAvatar: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg", -- 2.49.1 From 1fdfacdbf77f9285c803b6c4ffe030ab83a9fbee Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 16:15:19 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..32febef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,66 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Workspace Café - Yerevan | Premium Coffee & Breakfast", + description: "Discover Workspace Café in Yerevan - your perfect spot for specialty coffee, delicious Armenian breakfast, and a cozy work atmosphere. Rated 4.9★ by 224 reviews.", + keywords: "café Yerevan, specialty coffee, Armenian breakfast, workspace, remote work, coffee shop Armenia", + robots: { + index: true, + follow: true, + }, + metadataBase: new URL("https://workspacecafe.am"), + alternates: { + canonical: "https://workspacecafe.am", + }, + openGraph: { + title: "Workspace Café - Yerevan | Premium Coffee & Breakfast", + description: "Premium specialty coffee and Armenian breakfast in a cozy, productive atmosphere. 4.9★ rated café in Yerevan.", + type: "website", + siteName: "Workspace Café", + images: [ + { + url: "http://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg", + alt: "Workspace Café interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Workspace Café - Premium Coffee & Cozy Vibes", + description: "Experience specialty coffee and Armenian breakfast at Workspace Café. Your perfect workspace in Yerevan.", + images: ["http://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +69,9 @@ export default function RootLayout({ return ( - + {children}