Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 74eff3fc6e | |||
| 7c2ada5ba1 | |||
| 98a401f0f8 | |||
| 8e25e76295 |
@@ -1,11 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const geist = Geist({
|
||||||
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Bradley's Cleaning Service | DFW Apartment & Move-Out Cleaning", description: "Professional apartment unit turn and move-out cleaning services in Dallas-Fort Worth. Fast turnaround, insured, detail-oriented. Free quote available."};
|
title: "Bradley's Cleaning Service | Professional Apartment & Move-Out Cleaning in DFW", description: "Reliable, insured apartment unit turn and move-out cleaning services in Dallas–Fort Worth. Fast turnaround, detail-oriented, serving property managers and homeowners."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get a Free Quote", href: "#contact" },
|
{ text: "Book Your Free Quote", href: "#contact" },
|
||||||
{ text: "Schedule a Walkthrough", href: "#contact" },
|
{ text: "Schedule a Walkthrough", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-men-cleaning-office-together_23-2149345517.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-men-cleaning-office-together_23-2149345517.jpg"
|
||||||
|
|||||||
Reference in New Issue
Block a user