diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 402f46b..8b6e996 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -81,7 +81,7 @@ export default function ContactPage() { { text: "Get Directions", href: "https://maps.google.com" }, { text: "Reserve a Table", href: "#" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3435.jpg" + imageSrc="http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3435.jpg?_wi=2" imageAlt="Stepout Cafe welcoming interior with warm ambient lighting" showDimOverlay={true} buttonAnimation="slide-up" diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index c9b5ad7..84bc082 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -46,7 +46,7 @@ export default function GalleryPage() { excerpt: "Every corner of Stepout Cafe reflects thoughtful design philosophy—comfort meets aesthetics.", imageSrc: - "http://img.b2bpic.net/free-photo/businesswoman_23-2148006252.jpg", + "http://img.b2bpic.net/free-photo/businesswoman_23-2148006252.jpg?_wi=2", imageAlt: "Cafe interior design beautiful ambiance", authorName: "Stepout Team", authorAvatar: @@ -60,7 +60,7 @@ export default function GalleryPage() { excerpt: "Discover how our chefs transform seasonal ingredients into memorable culinary experiences.", imageSrc: - "http://img.b2bpic.net/free-photo/pasta-topped-with-walnuts-olives_140725-3500.jpg", + "http://img.b2bpic.net/free-photo/pasta-topped-with-walnuts-olives_140725-3500.jpg?_wi=4", imageAlt: "Cafe food presentation plating artistry", authorName: "Chef Collective", authorAvatar: @@ -74,7 +74,7 @@ export default function GalleryPage() { excerpt: "The heartbeat of Stepout—creative minds, entrepreneurs, and dreamers building community together.", imageSrc: - "http://img.b2bpic.net/free-photo/happy-friends-looking-out-window_23-2148422461.jpg", + "http://img.b2bpic.net/free-photo/happy-friends-looking-out-window_23-2148422461.jpg?_wi=2", imageAlt: "Cafe community gathering social moment", authorName: "Community", authorAvatar: @@ -88,7 +88,7 @@ export default function GalleryPage() { excerpt: "Explore our single-origin coffee selection and the stories behind each meticulously roasted batch.", imageSrc: - "http://img.b2bpic.net/free-photo/delicious-coffee-cup-bottle-arrangement_23-2149600691.jpg", + "http://img.b2bpic.net/free-photo/delicious-coffee-cup-bottle-arrangement_23-2149600691.jpg?_wi=3", imageAlt: "Cafe detail aesthetic minimalist design", authorName: "Coffee Experts", authorAvatar: diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..842df18 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Stepout Cafe | Artisanal Coffee & Culinary Spaces", + description: "Discover Stepout Cafe—premium coffee, craft cuisine, and versatile spaces designed for creativity and community connection.", + keywords: "cafe, coffee, workspace, coworking, artisanal food, community, vegan options, gluten-free", + metadataBase: new URL("https://stepoutcafe.com"), + alternates: { + canonical: "https://stepoutcafe.com", + }, + openGraph: { + title: "Stepout Cafe | Where Coffee Meets Community", + description: "Premium artisanal cafe with interactive menu discovery, versatile work spaces, and authentic community experience.", + url: "https://stepoutcafe.com", + siteName: "Stepout Cafe", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3435.jpg", + alt: "Stepout Cafe Interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Stepout Cafe | Artisanal Coffee & Community", + description: "Experience premium coffee, craft cuisine, and spaces designed for your creative journey.", + images: ["http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3435.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}