12 Commits

Author SHA1 Message Date
e2d2acc6ad Update theme fonts 2026-03-17 09:38:56 +00:00
fdf6d51199 Update theme fonts 2026-03-17 09:38:55 +00:00
404cbc03eb Update theme colors 2026-03-17 09:38:22 +00:00
1e16ae958c Update theme colors 2026-03-17 09:37:21 +00:00
72d05d7db0 Update theme colors 2026-03-17 09:35:46 +00:00
6fdedc55c6 Update src/app/styles/variables.css 2026-03-17 09:29:10 +00:00
3d6e9202d2 Update src/app/page.tsx 2026-03-17 09:29:10 +00:00
6b98d629d9 Merge version_6 into main
Merge version_6 into main
2026-03-17 09:26:40 +00:00
ec5a3864bb Update src/app/styles/variables.css 2026-03-17 09:26:36 +00:00
d3b9f2d295 Update src/app/page.tsx 2026-03-17 09:26:36 +00:00
dcc1e5392a Merge version_5 into main
Merge version_5 into main
2026-03-12 14:46:21 +00:00
88d366a28f Merge version_5 into main
Merge version_5 into main
2026-03-12 14:45:27 +00:00
4 changed files with 23 additions and 16 deletions

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -14,8 +15,14 @@ export const metadata: Metadata = {
description: 'Professional car wash, self-service bays, and dog grooming at Coomera Square, Gold Coast. 24/7 automatic and self-service. No appointments needed. Affordable & spotless results.',
};
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
@@ -26,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -44,7 +44,7 @@ export default function SudsAndBudsPage() {
<HeroBillboard
title="Sparkling Clean Vehicles & Happy Pets"
description="24/7 automatic and self-service car wash, plus professional dog grooming. Located at Coomera Square near M1 Exit 54. No appointments needed. Fast. Affordable. Spotless."
background={{ variant: "sparkles-gradient" }}
background={{ variant: "radial-gradient" }}
tag="Gold Coast's Premier Wash Facility"
tagIcon={Sparkles}
buttons={[
@@ -217,4 +217,4 @@ export default function SudsAndBudsPage() {
</div>
</ThemeProvider>
);
}
}

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1f514c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #159c49;
--background-accent: #a8e8ba;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #001f19e6;
--primary-cta: #0f6fff;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #001f19e6;
--accent: #a8e8d5;
--background-accent: #3fc7ff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);