Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5439c854a7 | |||
| 8dfd94b26e | |||
| 2d066d3ece | |||
| 19e2b18904 | |||
| a44fd972e2 | |||
| 7d032310b0 | |||
| 0545e1a796 | |||
| bf1edb6a2f | |||
| 2893017428 | |||
| f1f5ad9e60 | |||
| c523cf727c | |||
| 7f046efabf | |||
| 63cc3cd6d8 |
@@ -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({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="noise"
|
||||
cardStyle="gradient-radial"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
@@ -32,7 +32,7 @@ export default function LandingPage() {
|
||||
{ name: "Apartments", id: "apartments" },
|
||||
{ name: "Experiences", id: "experiences" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "EN | IT | DE", id: "language" },
|
||||
]}
|
||||
button={{ text: "Book Now", href: "#contact" }}
|
||||
/>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000f06e6;;
|
||||
--primary-cta: #0a7039;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
/* --background: #ffffff;;;;;;;;;;
|
||||
--card: #f9f9f9;;;;;;;;;;
|
||||
--foreground: #000f06e6;;;;;;;;;;
|
||||
--primary-cta: #0a7039;;;;;;;;;;
|
||||
--secondary-cta: #f9f9f9;;;;;;;;;;
|
||||
--accent: #e2e2e2;;;;;;;;;;
|
||||
--background-accent: #c4c4c4;;;;;;;;;; */
|
||||
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000f06e6;;
|
||||
--primary-cta: #0a7039;;
|
||||
--primary-cta-text: #ffffff;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta-text: #000f06e6;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
--background: #ffffff;;;;;;;;;;
|
||||
--card: #f9f9f9;;;;;;;;;;
|
||||
--foreground: #000f06e6;;;;;;;;;;
|
||||
--primary-cta: #0a7039;;;;;;;;;;
|
||||
--primary-cta-text: #ffffff;;;;;;;;;;
|
||||
--secondary-cta: #f9f9f9;;;;;;;;;;
|
||||
--secondary-cta-text: #000f06e6;;;;;;;;;;
|
||||
--accent: #e2e2e2;;;;;;;;;;
|
||||
--background-accent: #c4c4c4;;;;;;;;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user