diff --git a/src/app/europe-trips/page.tsx b/src/app/europe-trips/page.tsx index 8303c6e..0dba4eb 100644 --- a/src/app/europe-trips/page.tsx +++ b/src/app/europe-trips/page.tsx @@ -81,7 +81,7 @@ export default function EuropeTripsPage() { { text: "Get a Custom Quote", href: "/contact" }, { text: "Back to Trips", href: "/" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/atmosphere-house-pleasure-crew-attitude-view_1303-3274.jpg" + imageSrc="http://img.b2bpic.net/free-photo/atmosphere-house-pleasure-crew-attitude-view_1303-3274.jpg?_wi=2" imageAlt="Swiss Alps mountain landscape" showDimOverlay={true} buttonAnimation="slide-up" @@ -213,7 +213,7 @@ export default function EuropeTripsPage() { role: "Team Captain", testimonial: "Two of my favourite activities together at last! Hockey and travelling. Hiking, taking a gondola ride up a beautiful mountain, or cycling around Zurich by day, and lacing up the skates by night — it doesn't get any better.", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-age-man-with-grey-hair-wearing-casual-t-shirt-smiling-with-happy-face-winking-camera-doing-victory-sign-number-two_839833-17292.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-age-man-with-grey-hair-wearing-casual-t-shirt-smiling-with-happy-face-winking-camera-doing-victory-sign-number-two_839833-17292.jpg?_wi=2", imageAlt: "Jason Hynes", icon: Star, }, @@ -223,7 +223,7 @@ export default function EuropeTripsPage() { role: "Team Player", testimonial: "The highlight was when one of the teams hosted us after the game for a barn party. What a brilliant trip! Once in a lifetime!", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-good-looking-young-man-beach-male-model-with-shaved-head-sunglasses-smiling-brightly-camera-portrait-vacation-beauty-concept_74855-23337.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-good-looking-young-man-beach-male-model-with-shaved-head-sunglasses-smiling-brightly-camera-portrait-vacation-beauty-concept_74855-23337.jpg?_wi=2", imageAlt: "Kyle Whaley", icon: Star, }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..eff6434 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,34 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "PlayAway Tours - Sports Travel Experience Design", + description: "Custom hockey trips for Canadian rec teams combining competitive play, iconic destinations, and unforgettable team bonding experiences.", + keywords: "hockey trips, sports travel, team bonding, Canada, Switzerland, Toronto, recreational hockey", +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +37,9 @@ export default function RootLayout({ return ( - + {children}