diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx index 7165ed0..16bad6c 100644 --- a/src/app/location/page.tsx +++ b/src/app/location/page.tsx @@ -18,8 +18,7 @@ export default function LocationPage() { const footerColumns = [ { - title: "Hotel", - items: [ + title: "Hotel", items: [ { label: "Rooms", href: "#rooms" }, { label: "Dining", href: "#dining" }, { label: "Location", href: "#location" }, @@ -27,8 +26,7 @@ export default function LocationPage() { ], }, { - title: "Guest Services", - items: [ + title: "Guest Services", items: [ { label: "Book a Room", href: "#contact" }, { label: "Group Bookings", href: "#contact" }, { label: "Conference Facilities", href: "#contact" }, @@ -36,8 +34,7 @@ export default function LocationPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +353 1 884 3900", href: "tel:+353188439900" }, { label: "Address: 27 Drumcondra Rd Upper, Dublin 9", href: "#" }, { label: "Email: info@dublinskylon.ie", href: "mailto:info@dublinskylon.ie" }, @@ -45,8 +42,7 @@ export default function LocationPage() { ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Facebook", href: "https://facebook.com" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Twitter", href: "https://twitter.com" }, @@ -62,7 +58,7 @@ export default function LocationPage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="blurBottom" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" @@ -83,28 +79,20 @@ export default function LocationPage() { tag="Location & Transport" bulletPoints={[ { - title: "3km to City Centre", - description: "Quick access to Dublin's Temple Bar, Trinity College, Guinness Storehouse, and iconic attractions.", - icon: MapPin, + title: "3km to City Centre", description: "Quick access to Dublin's Temple Bar, Trinity College, Guinness Storehouse, and iconic attractions.", icon: MapPin, }, { - title: "15 mins to Dublin Airport", - description: "Convenient airport transfers with easy parking available at the hotel.", - icon: Plane, + title: "15 mins to Dublin Airport", description: "Convenient airport transfers with easy parking available at the hotel.", icon: Plane, }, { - title: "Close to Croke Park", - description: "Perfect for sports enthusiasts attending GAA matches and events at the iconic stadium.", - icon: Trophy, + title: "Close to Croke Park", description: "Perfect for sports enthusiasts attending GAA matches and events at the iconic stadium.", icon: Trophy, }, { - title: "Excellent Transport Links", - description: "Direct access to Dublin's bus and tram networks for exploring the city and surrounding areas.", - icon: Navigation, + title: "Excellent Transport Links", description: "Direct access to Dublin's bus and tram networks for exploring the city and surrounding areas.", icon: Navigation, }, ]} - 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" + imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg" + imageAlt="Dublin city map landmarks aerial view" imagePosition="left" textboxLayout="default" useInvertedBackground={false} @@ -114,32 +102,16 @@ export default function LocationPage() {
); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index c70c812..c30fa61 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,5 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; @@ -9,8 +8,9 @@ import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; import SplitAbout from "@/components/sections/about/SplitAbout"; import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Utensils, Globe, Wine, Users, MapPin, Plane, Trophy, Navigation } from "lucide-react"; +import { Utensils, Globe, Wine, Users, MapPin, Plane, Trophy, Navigation, Phone } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -23,26 +23,23 @@ export default function HomePage() { const footerColumns = [ { - title: "Hotel", - items: [ - { label: "Rooms", href: "/" }, - { label: "Dining", href: "/" }, - { label: "Location", href: "/" }, - { label: "Reviews", href: "/" }, + title: "Hotel", items: [ + { label: "Rooms", href: "#rooms" }, + { label: "Dining", href: "#dining" }, + { label: "Location", href: "#location" }, + { label: "Reviews", href: "#reviews" }, ], }, { - title: "Guest Services", - items: [ - { label: "Book a Room", href: "/contact" }, - { label: "Group Bookings", href: "/contact" }, - { label: "Conference Facilities", href: "/contact" }, - { label: "Special Offers", href: "/" }, + title: "Guest Services", items: [ + { label: "Book a Room", href: "#contact" }, + { label: "Group Bookings", href: "#contact" }, + { label: "Conference Facilities", href: "#contact" }, + { label: "Special Offers", href: "#" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +353 1 884 3900", href: "tel:+353188439900" }, { label: "Address: 27 Drumcondra Rd Upper, Dublin 9", href: "#" }, { label: "Email: info@dublinskylon.ie", href: "mailto:info@dublinskylon.ie" }, @@ -50,8 +47,7 @@ export default function HomePage() { ], }, { - title: "Follow Us", - items: [ + title: "Follow Us", items: [ { label: "Facebook", href: "https://facebook.com" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Twitter", href: "https://twitter.com" }, @@ -67,7 +63,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="blurBottom" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" @@ -76,7 +72,7 @@ export default function HomePage() { @@ -85,15 +81,15 @@ export default function HomePage() { @@ -106,35 +102,15 @@ export default function HomePage() { tag="Accommodations" products={[ { - id: "1", - name: "Single Room", - price: "From €112/night", - 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: "1", name: "Single Room", price: "From €112/night", imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-comfortable-hotel-room_1232-1822.jpg", imageAlt: "single bedroom hotel modern minimalist"}, { - 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?_wi=1", - imageAlt: "Double 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", imageAlt: "double bedroom hotel luxury comfortable"}, { - id: "3", - name: "Twin Room", - price: "From €135/night", - imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=1", - imageAlt: "Twin 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", imageAlt: "twin beds hotel room two singles"}, { - 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?_wi=1", - imageAlt: "Family suite 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", imageAlt: "family hotel suite multiple rooms spacious"}, ]} - gridVariant="four-items-2x2-equal-grid" + gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} @@ -148,25 +124,17 @@ export default function HomePage() { features={[ { id: 1, - 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?_wi=2", - }, + 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"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg"}, }, { id: 2, - 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?_wi=2", - }, + 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"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/happy-family-spending-time-bed-caravan_23-2148659495.jpg"}, }, ]} showStepNumbers={true} @@ -183,31 +151,24 @@ export default function HomePage() { tag="Dining & Drinks" bulletPoints={[ { - title: "Irish Cuisine", - description: "Traditional Irish dishes crafted with locally sourced ingredients and modern culinary techniques.", - icon: Utensils, + title: "Irish Cuisine", description: "Traditional Irish dishes crafted with locally sourced ingredients and modern culinary techniques.", icon: Utensils, }, { - title: "International Menu", - description: "Select from our diverse menu featuring European and international specialties prepared by award-winning chefs.", - icon: Globe, + title: "International Menu", description: "Select from our diverse menu featuring European and international specialties prepared by award-winning chefs.", icon: Globe, }, { - title: "Premium Bar", - description: "Signature cocktails, craft beers, and an extensive wine selection curated by our expert sommeliers.", - icon: Wine, + title: "Premium Bar", description: "Signature cocktails, craft beers, and an extensive wine selection curated by our expert sommeliers.", icon: Wine, }, { - title: "Private Dining", - description: "Host corporate events, celebrations, and special occasions in our elegant private dining rooms.", - icon: Users, + title: "Private Dining", description: "Host corporate events, celebrations, and special occasions in our elegant private dining rooms.", icon: Users, }, ]} - 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" + imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg" + imageAlt="upscale hotel bar elegant interior design" imagePosition="right" textboxLayout="default" useInvertedBackground={false} + mediaAnimation="slide-up" />
@@ -218,35 +179,28 @@ export default function HomePage() { tag="Location & Transport" bulletPoints={[ { - title: "3km to City Centre", - description: "Quick access to Dublin's Temple Bar, Trinity College, Guinness Storehouse, and iconic attractions.", - icon: MapPin, + title: "3km to City Centre", description: "Quick access to Dublin's Temple Bar, Trinity College, Guinness Storehouse, and iconic attractions.", icon: MapPin, }, { - title: "15 mins to Dublin Airport", - description: "Convenient airport transfers with easy parking available at the hotel.", - icon: Plane, + title: "15 mins to Dublin Airport", description: "Convenient airport transfers with easy parking available at the hotel.", icon: Plane, }, { - title: "Close to Croke Park", - description: "Perfect for sports enthusiasts attending GAA matches and events at the iconic stadium.", - icon: Trophy, + title: "Close to Croke Park", description: "Perfect for sports enthusiasts attending GAA matches and events at the iconic stadium.", icon: Trophy, }, { - title: "Excellent Transport Links", - description: "Direct access to Dublin's bus and tram networks for exploring the city and surrounding areas.", - icon: Navigation, + title: "Excellent Transport Links", description: "Direct access to Dublin's bus and tram networks for exploring the city and surrounding areas.", icon: Navigation, }, ]} - 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" + imageSrc="http://img.b2bpic.net/free-photo/aerial-view-corporate-buildings-west-london-uk_181624-17106.jpg" + imageAlt="Dublin city map landmarks aerial view" imagePosition="left" textboxLayout="default" useInvertedBackground={false} + mediaAnimation="slide-up" /> -
+
+
+ +
+