Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b442d5c06 | |||
| 8897b4acaf | |||
| 9e9cb70952 | |||
| 73b2c3f00c | |||
| d14aa3cc28 | |||
| d41b5dffcd | |||
| a2863d15b7 | |||
| 71aa286667 |
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user