22 Commits

Author SHA1 Message Date
8f0f6d883a Update theme colors 2026-04-23 15:51:48 +00:00
dd62f30f62 Update theme colors 2026-04-23 15:51:35 +00:00
8b3f7c4dae Update theme colors 2026-04-23 15:51:22 +00:00
bc599e5a59 Update theme colors 2026-04-23 15:51:06 +00:00
4574d07123 Update theme colors 2026-04-23 15:50:56 +00:00
b559c90cc9 Update theme colors 2026-04-23 15:50:36 +00:00
74b27c8f6d Update theme colors 2026-04-23 15:50:21 +00:00
c593e2512b Update theme colors 2026-04-23 15:50:01 +00:00
5f22c3dabf Update theme colors 2026-04-23 15:49:42 +00:00
7f49b368a0 Update src/app/page.tsx 2026-04-23 15:46:33 +00:00
3e9b3a29e5 Merge version_4 into main
Merge version_4 into main
2026-04-23 15:45:46 +00:00
287f204327 Update theme fonts 2026-04-23 15:45:42 +00:00
80892fc79a Update theme fonts 2026-04-23 15:45:42 +00:00
48616d5faa Merge version_4 into main
Merge version_4 into main
2026-04-23 15:45:39 +00:00
3a9c69a922 Update theme fonts 2026-04-23 15:45:36 +00:00
8ee0f01146 Update theme fonts 2026-04-23 15:45:36 +00:00
0a4ceb8742 Merge version_4 into main
Merge version_4 into main
2026-04-23 15:45:30 +00:00
97e1975c17 Update theme fonts 2026-04-23 15:45:27 +00:00
d7f805d15d Update theme fonts 2026-04-23 15:45:26 +00:00
138115a5d9 Merge version_4 into main
Merge version_4 into main
2026-04-23 15:45:17 +00:00
699c04370e Update theme colors 2026-04-23 15:45:14 +00:00
29590db972 Merge version_3 into main
Merge version_3 into main
2026-04-23 15:43:29 +00:00
4 changed files with 22 additions and 14 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 { DM_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -22,8 +23,15 @@ export const metadata: Metadata = {
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -35,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -53,7 +53,7 @@ export default function LandingPage() {
{ name: "Mark D.", handle: "@markd", testimonial: "Honest pricing, no gimmicks. My go-to for HVAC.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg?_wi=1", imageAlt: "hvac air conditioning unit home" },
]}
buttons={[
{ text: "Call Now", href: "tel:7723342345" },
{ text: "Call Now", onClick: () => window.location.href = "tel:7723342345" },
{ text: "Request Estimate", href: "#contact" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClRE45Yg9Dl5dkTVWDpchIcGjo/uploaded-1776958632028-j8swsyrr.png"

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f8f9fa;
--foreground: #000612;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--background: #46ffe0;
--card: #ffffff;
--foreground: #45aaeb;
--primary-cta: #0798ff;
--primary-cta-text: #27d7f2;
--secondary-cta: #ffffff;
--secondary-cta-text: #15479c;
--accent: #e2e2e2;
--background-accent: #f1f8ff;
--secondary-cta-text: #1f2429;
--accent: #93c7ff;
--background-accent: #000000;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);