Merge version_10 into main #16

Merged
bender merged 2 commits from version_10 into main 2026-04-11 23:02:25 +00:00
2 changed files with 7 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,9 +22,11 @@ export const metadata: Metadata = { title: 'Elite Horizons | Bespoke Luxury Trav
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -38,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}