diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 461c8c6..57ce995 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "Al Ponte Albergo | Panoramic Hotel Lake Lugano, Ticino", description: "Discover Al Ponte Albergo: affordable comfort with stunning Lake Lugano views. 23 rooms, family-friendly suites, apartments. Book your perfect stay in Southern Switzerland today.", keywords: "Lake Lugano hotel, hotel panoramic view Lugano, budget hotel Ticino, family hotel Switzerland, hotel balcony Lake Lugano, apartment hotel Lugano, Al Ponte Albergo", openGraph: { title: "Al Ponte Albergo – Panoramic Hotel on Lake Lugano", description: "Smart comfort, stunning views. Experience Southern Switzerland at Al Ponte Albergo with rooms, apartments, and unforgettable lake vistas.", type: "website", siteName: "Al Ponte Albergo", images: [ @@ -40,7 +34,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ee1bc9..b010135 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,21 +8,21 @@ import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwent import ProductCardFour from "@/components/sections/product/ProductCardFour"; import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { MapPin, DoorOpen, ArrowRight, Star, Heart, Users, Home, Building2, Compass, Waves, Coffee, Anchor, ShoppingBag, Trees } from "lucide-react"; +import { MapPin, DoorOpen, ArrowRight, Star, Heart, Users, Home, Building2, Compass, Waves, Coffee, Anchor, ShoppingBag, Trees, Globe } from "lucide-react"; export default function LandingPage() { return (