Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 14:47:51 +00:00
2 changed files with 9 additions and 66 deletions

View File

@@ -1,76 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Tree Service Nashville TN | Expert Removal & Trimming | Sky Tree Services",
description: "Professional tree removal, trimming, and emergency storm cleanup in Nashville, TN. 4.9★ rated. 24/7 available. Free estimates. Call 615-568-9651.",
keywords: "Nashville tree service, tree removal Nashville, emergency tree removal, tree trimming Nashville, stump grinding, storm damage cleanup",
metadataBase: new URL("https://skytreeservices.com"),
alternates: {
canonical: "https://skytreeservices.com",
},
openGraph: {
title: "Expert Tree Services Nashville TN - 24/7 Emergency Available",
description: "Professional tree removal, trimming, and storm cleanup. 4.9★ rated local business. Free estimates. Available 24/7.",
url: "https://skytreeservices.com",
siteName: "Sky Tree Services",
images: [
{
url: "http://img.b2bpic.net/free-photo/soft-focus-log-sawing-german-wedding-tradition-prove-strength-teamwork-as-couple_181624-58771.jpg",
alt: "professional tree removal crew large tree",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Expert Tree Services in Nashville TN",
description: "Professional tree removal & emergency service. 24/7 available. Call for free estimate.",
images: [
"http://img.b2bpic.net/free-photo/soft-focus-log-sawing-german-wedding-tradition-prove-strength-teamwork-as-couple_181624-58771.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Sky Tree Services - Nashville Tree Removal & Trimming", description: "Expert tree removal, trimming, and emergency services in Nashville. Available 24/7 for storm damage and tree emergencies."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -67,8 +67,8 @@ export default function HomePage() {
tagIcon={Shield}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now: 615-568-9651", href: "tel:+1-615-568-9651" },
{ text: "Get Free Estimate", href: "#contact" },
{ text: "Call Now: 615-568-9651", href: "tel:+1-615-568-9651" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/soft-focus-log-sawing-german-wedding-tradition-prove-strength-teamwork-as-couple_181624-58771.jpg?_wi=1"
@@ -213,4 +213,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}