Merge version_2 into main #9
@@ -1,8 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Maggie Roofing Contractors | Professional Roofing Services", description: "Reliable roofing solutions for residential and commercial properties. Quality craftsmanship, honest pricing, and expert service."};
|
||||
title: "Maggie Roofing", description: "Professional roofing solutions"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -11,7 +20,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function LandingPage() {
|
||||
tag="About Us"
|
||||
tagIcon={Building2}
|
||||
tagAnimation="slide-up"
|
||||
title="Quality Roofing, Honest Service. Protecting Your Home Since Day One."
|
||||
title="Expert Roofing Services with Integrity and Quality Craftsmanship"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#services" }
|
||||
|
||||
Reference in New Issue
Block a user