diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 033c389..ebbcd70 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -69,7 +69,7 @@ export default function ContactPage() { tag="Our Location" tagIcon={MapPin} tagAnimation="opacity" - imageSrc="http://img.b2bpic.net/free-photo/man-is-working-laptop-cafe_651396-1976.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-is-working-laptop-cafe_651396-1976.jpg?_wi=2" imageAlt="Workspace Café Location View" useInvertedBackground={false} buttons={[ diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 7fe17b6..745c85c 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -61,7 +61,7 @@ const GalleryPage = () => { tag="Space & Ambiance" tagIcon="Home" tagAnimation="opacity" - imageSrc="http://img.b2bpic.net/free-photo/man-is-working-laptop-cafe_651396-1976.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-is-working-laptop-cafe_651396-1976.jpg?_wi=3" imageAlt="Café ambiance cozy workspace seating" useInvertedBackground={false} buttons={[ @@ -80,7 +80,7 @@ const GalleryPage = () => { tag="Coffee Culture" tagIcon="Droplet" tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/close-up-man-pouring-milk-cup-coffee_23-2148366657.jpg" + imageSrc="http://img.b2bpic.net/free-photo/close-up-man-pouring-milk-cup-coffee_23-2148366657.jpg?_wi=4" imageAlt="specialty coffee pour over service" useInvertedBackground={true} buttons={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..73d073f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Workspace Café - Yerevan", + description: "Workspace café in Yerevan: premium coffee, delicious breakfast, and cozy workspace. Open until midnight. Reserve your table today. 4.9★ rated café on Pushkin St.", + keywords: "café Yerevan, coffee shop Armenia, workspace, co-working café, breakfast Yerevan", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Workspace Café - Yerevan", + description: "Premium coffee, delicious breakfast, and the perfect workspace in the heart of Yerevan.", + type: "website", + siteName: "Workspace Café", + }, + twitter: { + card: "summary_large_image", + title: "Workspace Café - Yerevan", + description: "Premium coffee and cozy workspace in the heart of Yerevan.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}