8 Commits

Author SHA1 Message Date
8b442d5c06 Update theme fonts 2026-04-25 22:26:28 +00:00
8897b4acaf Update theme fonts 2026-04-25 22:26:27 +00:00
9e9cb70952 Update theme fonts 2026-04-25 22:25:35 +00:00
73b2c3f00c Update theme fonts 2026-04-25 22:25:35 +00:00
d14aa3cc28 Update src/app/page.tsx 2026-04-25 22:24:54 +00:00
d41b5dffcd Update src/app/page.tsx 2026-04-25 22:02:23 +00:00
a2863d15b7 Update src/app/page.tsx 2026-04-25 21:59:35 +00:00
71aa286667 Merge version_3 into main
Merge version_3 into main
2026-04-25 21:58:25 +00:00
3 changed files with 14 additions and 10 deletions

View File

@@ -8,6 +8,8 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google"; import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -22,12 +24,14 @@ export const metadata: Metadata = {
}, },
}; };
const manrope = Manrope({
variable: "--font-manrope",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
const dmSans = DM_Sans({ const openSans = Open_Sans({
variable: "--font-dm-sans", variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -39,7 +43,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -35,21 +35,21 @@ export default function LandingPage() {
{ name: "Services", id: "menu" }, { name: "Services", id: "menu" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Crystal Clear Windows" brandName="Professions Window Cleaning "
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitTestimonial <HeroSplitTestimonial
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
title="Crystal Clear Views for Your Home." title="Transform Your View: Professional Window Cleaning Services"
description="Professional, streak-free window cleaning services to brighten your space." description="Professional, streak-free window cleaning services to brighten your space."
testimonials={[]} testimonials={[]}
buttons={[ buttons={[
{ text: "Get a Free Quote", href: "#contact" }, { text: "Get a Free Quote", href: "#contact" },
{ text: "Our Services", href: "#menu" }, { text: "Our Services", href: "#menu" },
]} ]}
imageSrc="https://img.b2bpic.net/free-photo/man-cleaning-window-with-squeegee-cloth_23-2148750447.jpg?_wi=1" imageSrc="https://img.b2bpic.net/free-photo/close-up-cleaning-window-with-cloth_23-2148529600.jpg?id=7945336"
imageAlt="Professional window cleaning" imageAlt="Professional window cleaning"
mediaAnimation="slide-up" mediaAnimation="slide-up"
/> />

View File

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