diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9970808..27e2729 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -83,21 +83,21 @@ export default function AboutPage() { id: 1, title: "Crafted Breakfasts", description: "Authentic European flavors inspired by morning traditions — made fresh every morning with exceptional ingredients.", - imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-tasty-cheesecake-lemon-tea-cup-toast-salad-fried-egg-bacon-gray-plate-white-background_23-2148067173.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-tasty-cheesecake-lemon-tea-cup-toast-salad-fried-egg-bacon-gray-plate-white-background_23-2148067173.jpg?_wi=4", imageAlt: "fresh homemade breakfast platter artisanal", }, { id: 2, title: "Specialty Coffee", description: "Perfectly balanced coffee served with care and consistency — each cup is an experience in itself.", - imageSrc: "http://img.b2bpic.net/free-photo/view-tool-used-pressing-making-coffee_23-2149878117.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/view-tool-used-pressing-making-coffee_23-2149878117.jpg?_wi=3", imageAlt: "artisan specialty coffee preparation barista", }, { id: 3, title: "Warm Atmosphere", description: "Cozy interiors, relaxed mornings, unforgettable moments — a space designed to feel like a home away from home.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-sitting-restaurant-talking-mobile-phone_23-2147936262.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-sitting-restaurant-talking-mobile-phone_23-2147936262.jpg?_wi=2", imageAlt: "cozy café interior warm lighting ambiance", }, ]} diff --git a/src/app/boxes/page.tsx b/src/app/boxes/page.tsx index dff6e7a..08f4e91 100644 --- a/src/app/boxes/page.tsx +++ b/src/app/boxes/page.tsx @@ -83,21 +83,21 @@ export default function BoxesPage() { id: "english-breakfast", name: "English Breakfast", price: "From €12", - imageSrc: "http://img.b2bpic.net/free-photo/bread-banana-tomato-white-plate-with-fork-knife_1150-20980.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/bread-banana-tomato-white-plate-with-fork-knife_1150-20980.jpg?_wi=5", imageAlt: "traditional English breakfast full plate", }, { id: "artisan-desserts", name: "Artisan Desserts", price: "From €6", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-dusting-sugar-delicious-chocolate-pastry_23-2148161562.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-dusting-sugar-delicious-chocolate-pastry_23-2148161562.jpg?_wi=4", imageAlt: "homemade cakes artisan pastries display", }, { id: "specialty-coffee", name: "Specialty Coffee", price: "From €4", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-pouring-milk-coffee_23-2148892879.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-pouring-milk-coffee_23-2148892879.jpg?_wi=3", imageAlt: "specialty coffee drinks latte cappuccino", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..098dd0a 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 { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Fusiara - Luxury Café & Breakfast Destination in Kościerzyna", + description: "Experience Kościerzyna's beloved breakfast & coffee café. Artisanal breakfasts, specialty coffee, and warm European hospitality. Open Wed-Sun, 8am daily.", + keywords: "café Kościerzyna, breakfast, specialty coffee, artisan desserts, luxury café, Polish café, morning ritual", + metadataBase: new URL("https://fusiara.pl"), + alternates: { + canonical: "https://fusiara.pl", + }, + openGraph: { + title: "Fusiara - Premium Breakfast & Coffee Café", + description: "Discover exceptional morning experiences at Fusiara. Fresh breakfasts, specialty coffee, and unforgettable moments.", + url: "https://fusiara.pl", + siteName: "Fusiara", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/still-life-with-cup-tea-books-candle-candlestick_169016-57385.jpg", + alt: "Fusiara café breakfast and coffee experience", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Fusiara - Premium Café Experience", + description: "Slow mornings. Exceptional taste. Visit Kościerzyna's most loved café.", + images: ["http://img.b2bpic.net/free-photo/still-life-with-cup-tea-books-candle-candlestick_169016-57385.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}