4 Commits

Author SHA1 Message Date
3e1d9e5b7e Update src/app/globals.css 2026-01-06 10:22:58 +00:00
96a14cd101 Update src/app/page.tsx 2026-01-06 10:20:26 +00:00
ea2cd4a93b Update src/app/layout.tsx 2026-01-06 10:20:25 +00:00
24cba40c0c Update src/app/globals.css 2026-01-06 10:20:24 +00:00
3 changed files with 21 additions and 15 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #f5faff;; --background: #ffffff;;
--card: #f1f8ff;; --card: #f5f5f5;;
--foreground: #001122;; --foreground: #000000e6;;
--primary-cta: #15479c;; --primary-cta: #1a1a1a;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #a8cce8;; --accent: #bebebe;;
--background-accent: #7ba3cf;; --background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-playfair-display --font-roboto), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-montserrat), sans-serif; font-family: var(--font-playfair-display --font-roboto), sans-serif;
} }

View File

@@ -1,14 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Playfair_Display, Roboto } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const playfairDisplay = Playfair_Display({
variable: "--font-montserrat", variable: "--font-playfair-display",
subsets: ["latin"], subsets: ["latin"],
}); });
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Prestige Motors | Luxury & Performance Vehicles", title: "Prestige Motors | Luxury & Performance Vehicles",
description: "Discover premium vehicles at Prestige Motors. Expert selection, transparent pricing, and exceptional service. Browse our luxury inventory today.", description: "Discover premium vehicles at Prestige Motors. Expert selection, transparent pricing, and exceptional service. Browse our luxury inventory today.",
@@ -51,7 +57,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={montserrat.variable} className={`${playfairDisplay.variable} ${roboto.variable}`}
> >
<Tag /> <Tag />
{children} {children}
@@ -1277,4 +1283,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal"; import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
@@ -261,4 +261,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }