Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 406b784f7c | |||
| 8c4d144ff6 | |||
| 18b41aadc3 | |||
| 0559f58599 | |||
| 4af0de163e | |||
| db58d4b58e | |||
| 8300673a7e | |||
| b6ad9e2d8e |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Lato } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -15,10 +16,10 @@ export const metadata: Metadata = {
|
||||
description: 'Premium pest protection for Arizona homes. Safe, reliable, and thorough service for families in Phoenix, Scottsdale, and beyond.',
|
||||
};
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -29,7 +30,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -51,21 +51,21 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Get a Free Quote", href: "#contact"},
|
||||
{
|
||||
text: "Text Us Now", href: "#"},
|
||||
text: "Text Us Now", href: "tel:6023267105"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-holiday-home_23-2151918265.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg", alt: "Happy mature businessman"},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg", alt: "Happy mature businessman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", alt: "Smiling man at cafe"},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg", alt: "Smiling man at cafe"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/picture-handsome-cheerful-young-farmer-with-thick-beard-spending-weekend-countryside_343059-3615.jpg", alt: "Handsome cheerful farmer"},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg", alt: "Handsome cheerful farmer"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-outdoors-portrait-mature-attractive-bearded-caucasian-young-man-blue-t-shirt-sports-pants-smiling-sitting-grass-relaxing_176420-19941.jpg", alt: "Attractive young man"},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg", alt: "Attractive young man"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-man-standing-office-medium-shot_23-2148327019.jpg", alt: "Smiley man in office"},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D6XPPk9fNkoTfBdfaQTzQZOSR4/uploaded-1777605751329-bf7zlnau.jpg", alt: "Smiley man in office"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
@@ -159,12 +159,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static"}}
|
||||
text="Get Protected Today. Fast quotes. No pressure. Just reliable service."
|
||||
text="Get Protected Today. Fast quotes. No pressure. Contact Owner Richard at 602-326-7105 or Technician Raiden Brooks at 480-764-7563."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote", href: "#"},
|
||||
{
|
||||
text: "Call Now", href: "tel:5555555555"},
|
||||
text: "Call Owner", href: "tel:6023267105"},
|
||||
{
|
||||
text: "Call Technician", href: "tel:4807647563"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -192,7 +194,9 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Text/Call Us", href: "tel:5555555555"},
|
||||
label: "Owner: 602-326-7105", href: "tel:6023267105"},
|
||||
{
|
||||
label: "Technician: 480-764-7563", href: "tel:4807647563"},
|
||||
{
|
||||
label: "Email", href: "mailto:hello@desertrose.com"},
|
||||
],
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-lato), 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-lato), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user