Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,54 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Chase's Junk Removal LLC | Fast, Affordable Hauling Services", description: "Professional junk removal serving North Port, Sarasota, Port Charlotte, Venice & Punta Gorda. Same-day service, free quotes, eco-friendly disposal.", keywords: "junk removal, furniture removal, house cleanout, yard waste removal, construction debris, appliance removal, North Port, Sarasota", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Chase's Junk Removal LLC | Fast & Affordable Service", description: "Get your junk hauled away fast. Free quotes, same-day service available. Serving North Port, Sarasota, Port Charlotte, Venice & Punta Gorda.", type: "website", siteName: "Chase's Junk Removal LLC", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg", alt: "Chase's Junk Removal truck"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Chase's Junk Removal LLC | Fast & Affordable", description: "Professional junk removal serving Southwest Florida. Free quotes, same-day service.", images: ["http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Chase's Junk Removal", description: "Fast, affordable junk removal serving your community"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1379,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ export default function LandingPage() {
|
||||
{ name: "Service Area", id: "service-area" }
|
||||
]}
|
||||
bottomLeftText="Fast • Affordable • Reliable"
|
||||
bottomRightText="941-XXX-XXXX"
|
||||
bottomRightText="941-204-6124"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
||||
description="Fast, affordable junk removal serving your community. We haul away furniture, appliances, yard waste, construction debris and more with professional reliability."
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "#contact" },
|
||||
{ text: "Call Now: 941-XXX-XXXX", href: "tel:941-XXX-XXXX" }
|
||||
{ text: "Call Now: 941-204-6124", href: "tel:941-204-6124" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
|
||||
Reference in New Issue
Block a user