Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f82cbcbd3f | |||
| 18571fac3e | |||
| 5ea89792f0 | |||
| 3e2ce5db8a | |||
| c1b11c5977 | |||
| 72785f6f7e | |||
| 3dd003cc63 | |||
| bd3c84afff | |||
| 1eec1e33d2 | |||
| 37e735c968 | |||
| 1c9fdaa118 | |||
| d4d9642752 | |||
| 08579b050e | |||
| a721644cf2 | |||
| 6e5f7dca65 | |||
| a28d75b43c | |||
| 216cd785f2 | |||
| 3764c4ce6e |
@@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -25,8 +26,16 @@ export const metadata: Metadata = {
|
||||
|
||||
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -38,7 +47,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -35,7 +35,7 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="MAC Home & Lawn Care"
|
||||
brandName=""
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -123,7 +123,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", title: "Exceptional", quote: "Reliable, professional, and friendly.", name: "Sarah J.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12316.jpg" },
|
||||
{ id: "1", title: "Outstanding", quote: "Outstanding service! They came weekly and always did a fantastic job. They’ve saved me so much time and stress, absolutely recommend them to anyone considering it.", name: "Roman Van Liempt", role: "Homeowner", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CrHs1VMEnBRIT7oAr7DGFHx66J/uploaded-1777137558489-o3x0r1s4.webp" },
|
||||
{ id: "2", title: "Great Work", quote: "My lawn has never looked better.", name: "Mike T.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-posing-plants-flowers_176420-3826.jpg" },
|
||||
{ id: "3", title: "Quality", quote: "Dependable service every time.", name: "Emily R.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-senior-couple_23-2148256632.jpg" },
|
||||
{ id: "4", title: "Best in Town", quote: "Professional results and great value.", name: "David K.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flowers_23-2149871129.jpg" },
|
||||
@@ -163,4 +163,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user