6 Commits

Author SHA1 Message Date
b50c77b285 Update theme fonts 2026-04-20 19:58:09 +00:00
2d30727a57 Update theme fonts 2026-04-20 19:58:08 +00:00
291405e9b1 Update src/app/page.tsx 2026-04-20 19:29:06 +00:00
358d919d3b Merge version_5 into main
Merge version_5 into main
2026-04-20 18:16:19 +00:00
210c90f160 Merge version_5 into main
Merge version_5 into main
2026-04-20 18:04:23 +00:00
25207bac2e Merge version_5 into main
Merge version_5 into main
2026-04-20 18:03:54 +00:00
3 changed files with 8 additions and 6 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -21,8 +22,9 @@ export const metadata: Metadata = {
},
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
@@ -34,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${publicSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
logoText="Zahara Elite Detailing"
description="Where perfection meets passion. Premium, mobile, and professional car care designed to restore your vehicle to its original showroom state."
buttons={[
{ text: "Book Your Detail", href: "#contact" },
{ text: "Get A Free Quote", href: "#contact" },
{ text: "View Our Services", href: "#services" },
]}
imageSrc="http://img.b2bpic.net/free-photo/male-painter-hazmat-suit-inside-car-shop_23-2149750030.jpg"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-public-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-public-sans), sans-serif;
}