Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-13 00:37:11 +00:00
6 changed files with 85 additions and 46 deletions

View File

@@ -86,13 +86,13 @@ export default function ActivitiesPage() {
{
title: "Winter Sports",
description: "Skiing, snowboarding, snowshoeing, and sledding on pristine alpine slopes. Professional guides available.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-fantastic-winter-landscape-snowy-mountains-sunny-cold-day_181624-29393.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-fantastic-winter-landscape-snowy-mountains-sunny-cold-day_181624-29393.jpg?_wi=2",
imageAlt: "Alpine skiing snow mountain winter sport",
},
{
title: "Summer Mountain Activities",
description: "Guided hiking trails, mountain biking, nature photography tours, and breathtaking alpine exploration.",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-hiking-equipment-walking-forest_661209-45.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-hiking-equipment-walking-forest_661209-45.jpg?_wi=2",
imageAlt: "mountain hiking alpine trail forest nature",
},
]}

View File

@@ -22,17 +22,17 @@ export default function DiningPage() {
{
title: "Swiss Traditional Cuisine",
description: "Cheese fondue, raclette, rösti with cheese, and alpine trout. Breakfast includes Swiss cheese platters and fresh croissants.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-arrangement_23-2149272712.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-arrangement_23-2149272712.jpg?_wi=2"
},
{
title: "Wellness Dining",
description: "Fresh salads, vegetable soup, mushroom risotto, and healthy prepared meals designed for relaxation and rejuvenation.",
imageSrc: "http://img.b2bpic.net/free-photo/side-dish-with-peppers-grated-cheese-greens_141793-949.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/side-dish-with-peppers-grated-cheese-greens_141793-949.jpg?_wi=2"
},
{
title: "Snow Peak Lounge",
description: "Alpine Spritz, Mountain Mule cocktails, Swiss wine selection, craft beers, and premium hot chocolate. 5 PM 12 AM daily.",
imageSrc: "http://img.b2bpic.net/free-photo/glass-fruit-cocktail-garnished-with-lemon-slice_140725-6937.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/glass-fruit-cocktail-garnished-with-lemon-slice_140725-6937.jpg?_wi=2"
}
];
@@ -45,7 +45,7 @@ export default function DiningPage() {
quote: "The peaceful atmosphere, stunning mountain views, and exceptional spa services made this our most memorable vacation. The staff's attention to detail is unmatched. We're already planning our return visit.",
tag: "Couples Retreat",
avatarSrc: "http://img.b2bpic.net/free-vector/businesswoman-character-with-facial-expressions-flat-design_23-2147607592.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg?_wi=3"
},
{
id: "2",
@@ -55,7 +55,7 @@ export default function DiningPage() {
quote: "Away from crowded tourist resorts, Rathvel offers genuine Swiss hospitality and culture. The hiking trails are spectacular, and the fondue dinner was unforgettable.",
tag: "Adventure Seeker",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-mangart-saddle-triglav-national-park-slovenia_181624-24406.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-mangart-saddle-triglav-national-park-slovenia_181624-24406.jpg?_wi=2"
},
{
id: "5",
@@ -65,7 +65,7 @@ export default function DiningPage() {
quote: "The restaurant elevated Swiss cuisine to art. Every dish showcased local ingredients and culinary excellence. The wine selection was exceptional.",
tag: "Food Enthusiast",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg?_wi=3"
},
{
id: "3",
@@ -75,7 +75,7 @@ export default function DiningPage() {
quote: "The spa treatments were transformative. The combination of professional therapists, natural surroundings, and luxury facilities created a sanctuary for recovery and renewal.",
tag: "Wellness Traveler",
avatarSrc: "http://img.b2bpic.net/free-photo/professional-woman-stylish-suit-office_23-2150167727.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg?_wi=3"
},
{
id: "4",
@@ -85,7 +85,7 @@ export default function DiningPage() {
quote: "Perfect for families seeking both relaxation and activity. Our kids loved the sledding and snowshoeing, while my wife and I enjoyed the spa. A true all-inclusive experience.",
tag: "Family Holiday",
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg?_wi=3"
}
];

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Rathvel Alpine Resort & Spa | Luxury Swiss Mountain Retreat",
description: "Experience luxury alpine hospitality at Rathvel Resort in Switzerland. World-class spa, gourmet Swiss dining, and mountain adventures in the Prealps.",
keywords: "luxury alpine resort Switzerland, Swiss mountain hotel spa, Prealps wellness retreat, premium resort booking",
metadataBase: new URL("https://rathvelalpine.ch"),
alternates: {
canonical: "https://rathvelalpine.ch",
},
openGraph: {
title: "Rathvel Alpine Resort & Spa | Luxury Mountain Retreat",
description: "Discover authentic Swiss alpine luxury with world-class spa, gourmet dining, and mountain adventures.",
siteName: "Rathvel Alpine Resort & Spa",
type: "website",
url: "https://rathvelalpine.ch",
images: [
{
url: "http://img.b2bpic.net/free-photo/scenic-aerial-shot-town-mountain-alps_181624-29228.jpg",
alt: "Rathvel Alpine Resort mountain panorama",
},
],
},
twitter: {
card: "summary_large_image",
title: "Rathvel Alpine Resort & Spa | Swiss Mountain Luxury",
description: "Experience premium alpine hospitality in the Swiss Prealps. Book your luxury mountain retreat today.",
images: ["http://img.b2bpic.net/free-photo/scenic-aerial-shot-town-mountain-alps_181624-29228.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -88,17 +88,17 @@ export default function HomePage() {
{
title: "Therapeutic Massage",
description: "Swedish, Deep Tissue, Hot Stone, Alpine Herbal, and Couples massage treatments tailored to your needs.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-spa_23-2150911766.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-spa_23-2150911766.jpg?_wi=1",
},
{
title: "Facial & Body Treatments",
description: "Aromatherapy, premium facials, rejuvenating body scrubs, and detox therapies using natural alpine products.",
imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-blonde-woman_23-2147816965.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-blonde-woman_23-2147816965.jpg?_wi=1",
},
{
title: "Sauna & Steam",
description: "Traditional wooden sauna and steam room overlooking alpine peaks. Operating 10 AM 9 PM daily.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-relaxing-sauna-warm-light-wellness-mood-sauna-pause_169016-69224.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-relaxing-sauna-warm-light-wellness-mood-sauna-pause_169016-69224.jpg?_wi=1",
},
]}
/>
@@ -119,17 +119,17 @@ export default function HomePage() {
{
title: "Swiss Traditional Cuisine",
description: "Cheese fondue, raclette, rösti with cheese, and alpine trout. Breakfast includes Swiss cheese platters and fresh croissants.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-arrangement_23-2149272712.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-arrangement_23-2149272712.jpg?_wi=1",
},
{
title: "Wellness Dining",
description: "Fresh salads, vegetable soup, mushroom risotto, and healthy prepared meals designed for relaxation and rejuvenation.",
imageSrc: "http://img.b2bpic.net/free-photo/side-dish-with-peppers-grated-cheese-greens_141793-949.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-dish-with-peppers-grated-cheese-greens_141793-949.jpg?_wi=1",
},
{
title: "Snow Peak Lounge",
description: "Alpine Spritz, Mountain Mule cocktails, Swiss wine selection, craft beers, and premium hot chocolate. 5 PM 12 AM daily.",
imageSrc: "http://img.b2bpic.net/free-photo/glass-fruit-cocktail-garnished-with-lemon-slice_140725-6937.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/glass-fruit-cocktail-garnished-with-lemon-slice_140725-6937.jpg?_wi=1",
},
]}
/>
@@ -150,12 +150,12 @@ export default function HomePage() {
{
title: "Winter Sports",
description: "Skiing, snowboarding, snowshoeing, and sledding on pristine alpine slopes. Professional guides available.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-fantastic-winter-landscape-snowy-mountains-sunny-cold-day_181624-29393.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-fantastic-winter-landscape-snowy-mountains-sunny-cold-day_181624-29393.jpg?_wi=1",
},
{
title: "Summer Mountain Activities",
description: "Guided hiking trails, mountain biking, nature photography tours, and breathtaking alpine exploration.",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-hiking-equipment-walking-forest_661209-45.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-hiking-equipment-walking-forest_661209-45.jpg?_wi=1",
},
]}
/>
@@ -178,7 +178,7 @@ export default function HomePage() {
quote: "The peaceful atmosphere, stunning mountain views, and exceptional spa services made this our most memorable vacation. The staff's attention to detail is unmatched. We're already planning our return visit.",
tag: "Couples Retreat",
avatarSrc: "http://img.b2bpic.net/free-vector/businesswoman-character-with-facial-expressions-flat-design_23-2147607592.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg?_wi=1",
},
{
id: "2",
@@ -188,7 +188,7 @@ export default function HomePage() {
quote: "Away from crowded tourist resorts, Rathvel offers genuine Swiss hospitality and culture. The hiking trails are spectacular, and the fondue dinner was unforgettable.",
tag: "Adventure Seeker",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-mangart-saddle-triglav-national-park-slovenia_181624-24406.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-mangart-saddle-triglav-national-park-slovenia_181624-24406.jpg?_wi=1",
},
{
id: "3",
@@ -198,7 +198,7 @@ export default function HomePage() {
quote: "The spa treatments were transformative. The combination of professional therapists, natural surroundings, and luxury facilities created a sanctuary for recovery and renewal.",
tag: "Wellness Traveler",
avatarSrc: "http://img.b2bpic.net/free-photo/professional-woman-stylish-suit-office_23-2150167727.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg?_wi=1",
},
{
id: "4",
@@ -208,7 +208,7 @@ export default function HomePage() {
quote: "Perfect for families seeking both relaxation and activity. Our kids loved the sledding and snowshoeing, while my wife and I enjoyed the spa. A true all-inclusive experience.",
tag: "Family Holiday",
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg?_wi=1",
},
{
id: "5",
@@ -218,7 +218,7 @@ export default function HomePage() {
quote: "The restaurant elevated Swiss cuisine to art. Every dish showcased local ingredients and culinary excellence. The wine selection was exceptional.",
tag: "Food Enthusiast",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg?_wi=1",
},
{
id: "6",
@@ -228,7 +228,7 @@ export default function HomePage() {
quote: "As a Swiss native, I was impressed by how Rathvel combines modern luxury with authentic alpine charm. This is where I bring my most important guests.",
tag: "Local Connoisseur",
avatarSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-suit-white-shirt-with-wireless-earphones-happily-lookingin-camera-with-laptop-hands-while-spending-time-outdoor_574295-5776.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/big-hut-snow-shirakawago-japan_1150-11190.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/big-hut-snow-shirakawago-japan_1150-11190.jpg?_wi=1",
},
]}
/>

View File

@@ -59,7 +59,7 @@ export default function RoomsPage() {
price: "CHF 180",
rating: 5,
reviewCount: "142",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497286.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497286.jpg?_wi=1",
imageAlt: "Standard Alpine Room with mountain view balcony",
},
{
@@ -69,7 +69,7 @@ export default function RoomsPage() {
price: "CHF 280",
rating: 5,
reviewCount: "189",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-happy-smile-roof-top-restaurant-around-city-view_74190-11653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-happy-smile-roof-top-restaurant-around-city-view_74190-11653.jpg?_wi=1",
imageAlt: "Deluxe Mountain View Room with premium furnishings",
},
{
@@ -79,7 +79,7 @@ export default function RoomsPage() {
price: "CHF 380",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/interior-bedroom-white-creamy-tones_181624-16134.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-bedroom-white-creamy-tones_181624-16134.jpg?_wi=1",
imageAlt: "Junior Suite with separate living area",
},
]}
@@ -101,17 +101,17 @@ export default function RoomsPage() {
{
title: "Climate Control & Comfort",
description: "High-speed heated floors, premium bedding, blackout curtains, air purification systems, and smart temperature controls for optimal comfort.",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497286.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497286.jpg?_wi=2",
},
{
title: "Technology & Connectivity",
description: "High-speed WiFi 6, smart TV, wireless charging, USB-C ports, streaming services, and digital concierge access from your room.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-happy-smile-roof-top-restaurant-around-city-view_74190-11653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-happy-smile-roof-top-restaurant-around-city-view_74190-11653.jpg?_wi=2",
},
{
title: "Spa Bathroom Experience",
description: "Luxury rainfall shower, heated towel rack, premium toiletries from Swiss brands, separate vanity, and ambient lighting controls.",
imageSrc: "http://img.b2bpic.net/free-photo/interior-bedroom-white-creamy-tones_181624-16134.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-bedroom-white-creamy-tones_181624-16134.jpg?_wi=2",
},
]}
/>

View File

@@ -22,17 +22,17 @@ export default function SpaPage() {
{
title: "Therapeutic Massage",
description: "Swedish, Deep Tissue, Hot Stone, Alpine Herbal, and Couples massage treatments tailored to your needs.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-spa_23-2150911766.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-spa_23-2150911766.jpg?_wi=2"
},
{
title: "Facial & Body Treatments",
description: "Aromatherapy, premium facials, rejuvenating body scrubs, and detox therapies using natural alpine products.",
imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-blonde-woman_23-2147816965.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/massage-concept-with-blonde-woman_23-2147816965.jpg?_wi=2"
},
{
title: "Sauna & Steam",
description: "Traditional wooden sauna and steam room overlooking alpine peaks. Operating 10 AM 9 PM daily.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-relaxing-sauna-warm-light-wellness-mood-sauna-pause_169016-69224.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/woman-relaxing-sauna-warm-light-wellness-mood-sauna-pause_169016-69224.jpg?_wi=2"
}
];
@@ -45,7 +45,7 @@ export default function SpaPage() {
quote: "The peaceful atmosphere, stunning mountain views, and exceptional spa services made this our most memorable vacation. The staff's attention to detail is unmatched. We're already planning our return visit.",
tag: "Couples Retreat",
avatarSrc: "http://img.b2bpic.net/free-vector/businesswoman-character-with-facial-expressions-flat-design_23-2147607592.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/amazing-shot-ferchensee-lake-bavaria-germany_181624-43106.jpg?_wi=2"
},
{
id: "3",
@@ -55,7 +55,7 @@ export default function SpaPage() {
quote: "The spa treatments were transformative. The combination of professional therapists, natural surroundings, and luxury facilities created a sanctuary for recovery and renewal.",
tag: "Wellness Traveler",
avatarSrc: "http://img.b2bpic.net/free-photo/professional-woman-stylish-suit-office_23-2150167727.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816967.jpg?_wi=2"
},
{
id: "4",
@@ -65,7 +65,7 @@ export default function SpaPage() {
quote: "Perfect for families seeking both relaxation and activity. Our kids loved the sledding and snowshoeing, while my wife and I enjoyed the spa. A true all-inclusive experience.",
tag: "Family Holiday",
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/small-child-running-along-snow_8353-5209.jpg?_wi=2"
},
{
id: "5",
@@ -75,7 +75,7 @@ export default function SpaPage() {
quote: "The restaurant elevated Swiss cuisine to art. Every dish showcased local ingredients and culinary excellence. The wine selection was exceptional.",
tag: "Food Enthusiast",
avatarSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520073.jpg?_wi=2"
},
{
id: "6",
@@ -85,7 +85,7 @@ export default function SpaPage() {
quote: "As a Swiss native, I was impressed by how Rathvel combines modern luxury with authentic alpine charm. This is where I bring my most important guests.",
tag: "Local Connoisseur",
avatarSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-suit-white-shirt-with-wireless-earphones-happily-lookingin-camera-with-laptop-hands-while-spending-time-outdoor_574295-5776.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/big-hut-snow-shirakawago-japan_1150-11190.jpg"
imageSrc: "http://img.b2bpic.net/free-photo/big-hut-snow-shirakawago-japan_1150-11190.jpg?_wi=2"
}
];