Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6cde064fd7 | |||
| 6519375417 | |||
| dd0c848ff2 | |||
| 5b790b9c44 | |||
| e1f94ab580 | |||
| 217dbc0240 | |||
| a8a71efa7f | |||
| 042830f7ba | |||
| 7550b98335 | |||
| 12e9c792ce | |||
| f3d4950f1e | |||
| 3ae9b1f665 | |||
| 038709ad19 | |||
| 3e1d9e5b7e | |||
| 96a14cd101 | |||
| ea2cd4a93b | |||
| 24cba40c0c |
@@ -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;
|
||||||
}
|
}
|
||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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";
|
||||||
@@ -10,6 +10,7 @@ import TestimonialCardNine from "@/components/sections/testimonial/TestimonialCa
|
|||||||
import TeamCardSeven from "@/components/sections/team/TeamCardSeven";
|
import TeamCardSeven from "@/components/sections/team/TeamCardSeven";
|
||||||
import ContactInline from "@/components/sections/contact/ContactInline";
|
import ContactInline from "@/components/sections/contact/ContactInline";
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
|
||||||
import { Sparkles, CheckCircle, Star, Award, Facebook, Instagram, Linkedin } from "lucide-react";
|
import { Sparkles, CheckCircle, Star, Award, Facebook, Instagram, Linkedin } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -111,6 +112,36 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="feature-card-six" data-section="feature-card-six">
|
||||||
|
<FeatureCardSix
|
||||||
|
title="Why Choose Prestige Motors?"
|
||||||
|
description="Experience the difference that expertise and integrity make in automotive retail."
|
||||||
|
tag="Our Advantages"
|
||||||
|
tagIcon={Star}
|
||||||
|
negativeCard={{
|
||||||
|
title: "Traditional Dealerships",
|
||||||
|
items: [
|
||||||
|
"Hidden fees and markups",
|
||||||
|
"Limited transparency",
|
||||||
|
"High-pressure sales tactics",
|
||||||
|
"Generic inventory"
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
positiveCard={{
|
||||||
|
title: "Prestige Motors",
|
||||||
|
items: [
|
||||||
|
"Transparent pricing, no surprises",
|
||||||
|
"Detailed vehicle history and inspection reports",
|
||||||
|
"Consultative, pressure-free approach",
|
||||||
|
"Carefully curated premium selection"
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardSix
|
<ProductCardSix
|
||||||
title="Featured Inventory"
|
title="Featured Inventory"
|
||||||
@@ -261,4 +292,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user