Merge version_2 into main #5

Merged
bender merged 5 commits from version_2 into main 2026-03-03 19:24:25 +00:00
5 changed files with 12 additions and 58 deletions

View File

@@ -121,4 +121,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -106,4 +106,4 @@ export default function AccommodationsPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,62 +1,17 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Alpine Calm Luxury Swiss Boutique Hotel & Apartments",
description: "Experience serene alpine luxury at Alpine Calm, a design-forward boutique hotel in Switzerland. Premium rooms and serviced apartments with panoramic mountain views.",
keywords: "Swiss boutique hotel, alpine accommodation, luxury retreat, mountain lodge, Switzerland",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Alpine Calm Luxury Swiss Boutique Hotel",
description: "Discover serene alpine luxury with panoramic mountain views, refined design, and authentic Swiss hospitality.",
type: "website",
siteName: "Alpine Calm",
images: [
{
url: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg",
alt: "Alpine Calm luxury hotel with mountain views",
},
],
},
twitter: {
card: "summary_large_image",
title: "Alpine Calm Swiss Boutique Hotel",
description: "Experience serenity at our design-forward alpine retreat with panoramic mountain views.",
images: ["http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg"],
},
};
title: "Alpine Calm - Swiss Alpine Retreat", description: "Experience alpine serenity at Alpine Calm, a luxury Swiss retreat designed for quiet moments and panoramic mountain beauty.", keywords: "alpine, hotel, retreat, Switzerland, luxury, mountain"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1424,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -181,8 +181,8 @@ export default function HomePage() {
description="Reserve your dates and experience the profound serenity of Alpine Calm. Our team is delighted to assist with any inquiries or special requests."
background={{ variant: "plain" }}
useInvertedBackground={false}
buttonText="Reserve"
inputPlaceholder="your@email.com"
buttonText="Reserve"
termsText="We respect your privacy. Your information will only be used to confirm your reservation and send you relevant updates about your stay."
/>
</div>
@@ -217,4 +217,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -114,4 +114,4 @@ export default function PracticalInfoPage() {
</div>
</ThemeProvider>
);
}
}