Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1522d59836 | |||
| ef31fda530 | |||
| d235bfbfa5 | |||
| 8a0e5be125 | |||
| 29659a0411 | |||
| 6ac2896683 | |||
| a35b9c7749 | |||
| 6633425f91 | |||
| 2c0d4d9ebc | |||
| a347410437 | |||
| cbf6712083 | |||
| 01c495319c | |||
| 72cdfc14c4 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -15,9 +16,11 @@ export const metadata: Metadata = {
|
||||
description: 'Experience tranquility at Club Alda Hotel in Lapta. A Mediterranean sanctuary focusing on luxury, zen gardens, and boutique comfort.',
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
@@ -32,7 +35,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fcfaf7;
|
||||
--card: #f4f1ed;
|
||||
--foreground: #3d3b37;
|
||||
--primary-cta: #4a5d4e;
|
||||
--primary-cta-text: #fcfaf7;
|
||||
--secondary-cta: #fcfaf7;
|
||||
--secondary-cta-text: #3d3b37;
|
||||
--accent: #dcdbd7;
|
||||
--background-accent: #e6e4df;
|
||||
--background: #f5faff;
|
||||
--card: #ffffff;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #f5faff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001122;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user