Merge version_1 into main #1
@@ -103,7 +103,7 @@ export default function DiningPage() {
|
||||
icon: Users,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=3"
|
||||
imageAlt="Skylon Bar & Grill at Dublin Skylon Hotel"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
@@ -120,11 +120,11 @@ export default function DiningPage() {
|
||||
title: "Fine Dining Experience",
|
||||
description: "Our award-winning chefs prepare exquisite dishes in an elegant setting. From traditional Irish fare to international cuisine, each meal is crafted to perfection.",
|
||||
phoneOne={{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg?_wi=2",
|
||||
imageAlt: "Fine dining at Skylon Restaurant",
|
||||
},
|
||||
phoneTwo={{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=4",
|
||||
imageAlt: "Premium bar service",
|
||||
}},
|
||||
},
|
||||
@@ -133,11 +133,11 @@ export default function DiningPage() {
|
||||
title: "Craft Cocktails & Wine Selection",
|
||||
description: "Our expert mixologists create signature cocktails while our sommeliers curate an extensive wine collection to complement your meal perfectly.",
|
||||
phoneOne={{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=5",
|
||||
imageAlt: "Craft cocktails",
|
||||
}},
|
||||
phoneTwo{{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg?_wi=3",
|
||||
imageAlt: "Wine selection",
|
||||
}},
|
||||
},
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_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 { DM_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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dublin Skylon Hotel | 4-Star Hotel Drumcondra, Dublin",
|
||||
description: "Book your stay at Dublin Skylon Hotel, a 4-star hotel in Drumcondra, Dublin. Close to Dublin Airport and city centre. Free WiFi, restaurant & bar, parking. Excellent guest reviews.",
|
||||
keywords: "Dublin hotel, 4-star hotel, Drumcondra hotel, Dublin accommodation, business hotel Dublin, family hotel Dublin",
|
||||
metadataBase: new URL("https://dublinskylon.ie"),
|
||||
alternates: {
|
||||
canonical: "https://dublinskylon.ie",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Dublin Skylon Hotel | Luxury 4-Star Accommodation in Dublin",
|
||||
description: "Experience warm Irish hospitality at our 4-star hotel in Drumcondra, Dublin. Just 3km from the city centre with modern rooms, fine dining, and exceptional service.",
|
||||
url: "https://dublinskylon.ie",
|
||||
siteName: "Dublin Skylon Hotel",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg",
|
||||
alt: "Dublin Skylon Hotel luxury room",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Dublin Skylon Hotel | 4-Star Hotel in Dublin",
|
||||
description: "Book your stay at Dublin Skylon Hotel. Premium accommodation near Dublin Airport and city centre.",
|
||||
images: ["http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.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={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -103,7 +103,7 @@ export default function LocationPage() {
|
||||
icon: Navigation,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg?_wi=2"
|
||||
imageAlt="Dublin city map showing hotel location"
|
||||
imagePosition="left"
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -92,7 +92,7 @@ export default function HomePage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg?_wi=1"
|
||||
imageAlt="Luxury hotel room at Dublin Skylon Hotel"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -109,28 +109,28 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Single Room",
|
||||
price: "From €112/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg?_wi=1",
|
||||
imageAlt: "Single bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Double Room",
|
||||
price: "From €145/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=1",
|
||||
imageAlt: "Double bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Twin Room",
|
||||
price: "From €135/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=1",
|
||||
imageAlt: "Twin bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Family Room",
|
||||
price: "From €185/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=1",
|
||||
imageAlt: "Family suite at Dublin Skylon Hotel",
|
||||
},
|
||||
]}
|
||||
@@ -151,10 +151,10 @@ export default function HomePage() {
|
||||
title: "Modern Entertainment",
|
||||
description: "55-inch flat-screen TV with satellite channels, premium streaming services, and high-speed internet for your entertainment needs.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -162,10 +162,10 @@ export default function HomePage() {
|
||||
title: "Tea & Coffee Facilities",
|
||||
description: "Premium tea and coffee-making facilities with a selection of local Irish and international blends.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
]}
|
||||
@@ -203,7 +203,7 @@ export default function HomePage() {
|
||||
icon: Users,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=1"
|
||||
imageAlt="Skylon Bar & Grill at Dublin Skylon Hotel"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
icon: Navigation,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg?_wi=1"
|
||||
imageAlt="Dublin city map showing hotel location"
|
||||
imagePosition="left"
|
||||
textboxLayout="default"
|
||||
@@ -278,7 +278,7 @@ export default function HomePage() {
|
||||
quote: "Outstanding location, comfortable rooms, and exceptional service. The Skylon Bar & Grill is fantastic for client meetings. I've stayed here multiple times and always recommend it to colleagues.",
|
||||
tag: "Business Travel",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-standing-check-counter-with-passport-boarding-pass_107420-95789.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -288,7 +288,7 @@ export default function HomePage() {
|
||||
quote: "We had a wonderful week-long stay with our family. The family rooms are spacious, the staff was incredibly helpful with planning activities, and the location made it easy to explore Dublin.",
|
||||
tag: "Family Vacation",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/group-young-three-stylish-friends-posing-street-fashion-man-two-cute-girls-dressed-casual-summer-clothes-smiling-models-having-fun-sunglasses-cheerful-women-guy-outdoors_158538-16248.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -298,7 +298,7 @@ export default function HomePage() {
|
||||
quote: "From check-in to check-out, the team went above and beyond. The breakfast was delicious, the rooms were spotless, and the location near Croke Park was perfect for our visit.",
|
||||
tag: "Tourist",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-girl-her-handsome-boyfriend_158538-46.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -308,7 +308,7 @@ export default function HomePage() {
|
||||
quote: "Excellent value for money. The rooms are modern and well-appointed, the amenities are top-notch, and the staff is professional and friendly. Highly recommended for business travelers.",
|
||||
tag: "Business",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/tourist-road_23-2147827986.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -318,7 +318,7 @@ export default function HomePage() {
|
||||
quote: "The hotel's close proximity to Dublin's attractions made our visit so convenient. The Skylon Bar & Grill became our favorite spot in the evening. Definitely coming back!",
|
||||
tag: "Tourist",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-female-economist-working-office_23-2150251746.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -328,7 +328,7 @@ export default function HomePage() {
|
||||
quote: "The hotel has excellent facilities for meetings and events. Located well for accessing the conference venues, and the accommodation is first-rate. Staff was attentive throughout.",
|
||||
tag: "Conference",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-hiking-forest_329181-12264.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -88,28 +88,28 @@ export default function RoomsPage() {
|
||||
id: "1",
|
||||
name: "Single Room",
|
||||
price: "From €112/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg?_wi=4",
|
||||
imageAlt: "Single bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Double Room",
|
||||
price: "From €145/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=4",
|
||||
imageAlt: "Double bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Twin Room",
|
||||
price: "From €135/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=4",
|
||||
imageAlt: "Twin bedroom at Dublin Skylon Hotel",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Family Room",
|
||||
price: "From €185/night",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=4",
|
||||
imageAlt: "Family suite at Dublin Skylon Hotel",
|
||||
},
|
||||
]}
|
||||
@@ -130,10 +130,10 @@ export default function RoomsPage() {
|
||||
title: "Smart Technology",
|
||||
description: "55-inch flat-screen TV with satellite channels, premium streaming services, high-speed WiFi, and smart room controls for ultimate comfort.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg?_wi=5",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=5",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -141,10 +141,10 @@ export default function RoomsPage() {
|
||||
title: "Spa-Quality Bathrooms",
|
||||
description: "Modern en-suite bathrooms featuring rainfall showers, premium toiletries, heated towel rails, and superior lighting for a luxurious bathing experience.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=5",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=5",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -152,10 +152,10 @@ export default function RoomsPage() {
|
||||
title: "Business Amenities",
|
||||
description: "Dedicated workspace with ergonomic desk, high-speed internet, and connectivity ports for business travelers who need to stay productive.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-amazing-graceful-girl-with-cute-smile-resting-couch-near-her-handsome-boyfriend-beautiful-young-couple-white-attires-having-fun-home-together-while-listening-music-bed_197531-3216.jpg?_wi=6",
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user