Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f898bedc64 | |||
| 8b442d5c06 | |||
| 8897b4acaf | |||
| 5bcfc5e8d8 | |||
| 9e9cb70952 | |||
| 73b2c3f00c | |||
| 78686f51e3 | |||
| d14aa3cc28 | |||
| 2d965ea1e8 | |||
| d41b5dffcd | |||
| 69eb26dbb2 | |||
| a2863d15b7 | |||
| 71aa286667 |
@@ -8,6 +8,8 @@ import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } 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"],
|
||||
});
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -39,7 +43,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -35,21 +35,21 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "menu" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Crystal Clear Windows"
|
||||
brandName="Professions Window Cleaning "
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
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."
|
||||
testimonials={[]}
|
||||
buttons={[
|
||||
{ text: "Get a Free Quote", href: "#contact" },
|
||||
{ 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"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
|
||||
@@ -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-manrope), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user