Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2d2acc6ad | |||
| fdf6d51199 | |||
| 404cbc03eb | |||
| 1e16ae958c | |||
| 72d05d7db0 | |||
| 6fdedc55c6 | |||
| 3d6e9202d2 | |||
| 6b98d629d9 | |||
| ec5a3864bb | |||
| d3b9f2d295 | |||
| dcc1e5392a | |||
| 10df3c91af | |||
| 88d366a28f | |||
| a865a3842f | |||
| 7524325646 | |||
| 5ccab7cdd3 | |||
| 049cf2165e | |||
| a25cccb8ce | |||
| 16873416b3 | |||
| 1d13f27ec5 | |||
| 1682c9ba7e | |||
| 5252e40295 | |||
| 8548d0c93d | |||
| 43713857ad | |||
| 731a6f5ce1 | |||
| 8d2999a73a | |||
| dd22cc34b4 | |||
| 7c2d3b5756 | |||
| 33dd8a114d | |||
| 98e28f7b73 | |||
| bccd7e0f9e | |||
| 7475b397d4 | |||
| 6bf0898f5a |
@@ -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
|
||||
|
||||
@@ -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={[
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user