Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bda54aeea | |||
| 1d7558dcee | |||
| 3f376fba8b | |||
| 60e5f8b0ef | |||
| d4657c6c88 | |||
| 448b8f3e91 | |||
| d725e28f81 | |||
| b4a8bc7e26 | |||
| 091cffbcc4 | |||
| 68db553a2c | |||
| 03390ff5d4 | |||
| 982c4cfa74 | |||
| 1718bcc3e7 | |||
| f5aa461340 | |||
| 355acf0b29 | |||
| 45f9f98e20 | |||
| d95c3039c3 |
@@ -7,6 +7,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 { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -15,7 +16,16 @@ export const metadata: Metadata = {
|
||||
description: 'Professional mobile interior detailing services. We bring our expertise to your door, keeping your car interior pristine, fresh, and clean.',
|
||||
};
|
||||
|
||||
const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"] });
|
||||
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -25,7 +35,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #000000;
|
||||
--card: #1a2f1d;
|
||||
--card: #481f1f;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffffff;
|
||||
--primary-cta-text: #0a1a0c;
|
||||
--secondary-cta: #0d200f;
|
||||
--secondary-cta-text: #d4f6d8;
|
||||
--accent: #1a3d1f;
|
||||
--background-accent: #355e3b;
|
||||
--primary-cta-text: #280101;
|
||||
--secondary-cta: #361311;
|
||||
--secondary-cta-text: #f6d4d4;
|
||||
--accent: #51000b;
|
||||
--background-accent: #ff2231;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user