diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe9667f..9196cd6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,36 +9,37 @@ const montserrat = Montserrat({ }); export const metadata: Metadata = { - title: "Hike and Bike | Premium Adventure Tours in Norway & Switzerland", description: "Discover premium guided hiking and biking tours through Norway's Jotunheimen and Switzerland's Alpine terrain. Expert guides, luxury accommodations, small groups. Book your unforgettable adventure today.", keywords: "Norway hiking tours, Jotunheimen biking trips, Switzerland alpine tours, guided mountain adventures, premium travel", metadataBase: new URL("https://hikeandbike.com"), + title: "Hike and Bike | Self-Guided Alpine Tours with App & Accommodation", description: "Discover self-guided hiking and biking tours through Norway and Switzerland with our smart mobile app. Pre-booked accommodations included in all base packages. Optional bike rentals and limited guided tours available.", keywords: "self-guided hiking tours, app-based biking trails, Norway self-guided tours, Switzerland alpine hiking, self-guided adventure travel, mountain biking app, pre-booked accommodation", metadataBase: new URL("https://hikeandbike.com"), alternates: { - canonical: "https://hikeandbike.com"}, + canonical: "https://hikeandbike.com" + }, openGraph: { - title: "Hike and Bike | Premium Alpine Adventures", description: "Expert-guided hiking and biking tours in Norway and Switzerland. Luxury accommodations, small groups, authentic alpine experiences.", url: "https://hikeandbike.com", siteName: "Hike and Bike", type: "website", images: [ + title: "Hike and Bike | Self-Guided Alpine Adventures with Smart App", description: "Explore Norway and Switzerland at your own pace with our innovative mobile app. All packages include pre-booked luxury accommodations.", url: "https://hikeandbike.com", siteName: "Hike and Bike", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/man-walking-stone-pathway-surrounded-by-mountains-plants-lake_181624-3853.jpg", alt: "Mountain landscape in Norway"}, - ], + url: "http://img.b2bpic.net/free-photo/man-walking-stone-pathway-surrounded-by-mountains-plants-lake_181624-3853.jpg", alt: "Mountain landscape in Norway" + } + ] }, twitter: { - card: "summary_large_image", title: "Hike and Bike | Premium Alpine Adventures", description: "Discover Norway and Switzerland's most spectacular hiking and biking routes with expert guides.", images: [ - "http://img.b2bpic.net/free-photo/man-walking-stone-pathway-surrounded-by-mountains-plants-lake_181624-3853.jpg"], + card: "summary_large_image", title: "Hike and Bike | Self-Guided Alpine Adventures", description: "Explore at your own pace with our app. Pre-booked accommodations, optional guides and rentals.", images: [ + "http://img.b2bpic.net/free-photo/man-walking-stone-pathway-surrounded-by-mountains-plants-lake_181624-3853.jpg" + ] }, robots: { index: true, - follow: true, - }, + follow: true + } }; export default function RootLayout({ - children, + children }: Readonly<{ children: React.ReactNode; }>) { return ( - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a9e36b..e06b2bd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Mountain, MapPin, Heart } from "lucide-react"; +import { Mountain, MapPin, Heart, Smartphone, MapPinCheck, RotateCcw } from "lucide-react"; import Link from "next/link"; export default function HomePage() { @@ -16,7 +16,7 @@ export default function HomePage() { { name: "Norway Tours", id: "/norway" }, { name: "Switzerland Tours", id: "/switzerland" }, { name: "Book Now", id: "/booking" }, - { name: "About", id: "/about" }, + { name: "About", id: "/about" } ]; const footerColumns = [ @@ -24,37 +24,37 @@ export default function HomePage() { items: [ { label: "Home", href: "/" }, { label: "Norway Tours", href: "/norway" }, - { label: "Switzerland Tours", href: "/switzerland" }, - ], + { label: "Switzerland Tours", href: "/switzerland" } + ] }, { items: [ { label: "Book Now", href: "/booking" }, { label: "About Us", href: "/about" }, - { label: "Contact", href: "#contact" }, - ], + { label: "Contact", href: "#contact" } + ] }, { items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, - { label: "Cancellation Policy", href: "#" }, - ], + { label: "Cancellation Policy", href: "#" } + ] }, { items: [ { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, - { label: "LinkedIn", href: "https://linkedin.com" }, - ], + { label: "LinkedIn", href: "https://linkedin.com" } + ] }, { items: [ { label: "Newsletter", href: "#newsletter" }, { label: "GDPR Compliance", href: "#" }, - { label: "Company Info", href: "#" }, - ], - }, + { label: "Company Info", href: "#" } + ] + } ]; return ( @@ -74,16 +74,16 @@ export default function HomePage() {