Compare commits
24 Commits
version_3
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| b5cac5aca4 | |||
| 1c8250010a | |||
| 8f0f6d883a | |||
| dd62f30f62 | |||
| 8b3f7c4dae | |||
| bc599e5a59 | |||
| 4574d07123 | |||
| b559c90cc9 | |||
| 74b27c8f6d | |||
| c593e2512b | |||
| 5f22c3dabf | |||
| 7f49b368a0 | |||
| 3e9b3a29e5 | |||
| 287f204327 | |||
| 80892fc79a | |||
| 48616d5faa | |||
| 3a9c69a922 | |||
| 8ee0f01146 | |||
| 0a4ceb8742 | |||
| 97e1975c17 | |||
| d7f805d15d | |||
| 138115a5d9 | |||
| 699c04370e | |||
| 29590db972 |
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f8f9fa;
|
||||
--foreground: #000612;
|
||||
--primary-cta: #15479c;
|
||||
--background: #f12256;
|
||||
--card: #ffffff;
|
||||
--foreground: #45aaeb;
|
||||
--primary-cta: #6c98b7;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #15479c;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #f1f8ff;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #93c7ff;
|
||||
--background-accent: #000000;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user