5 Commits

Author SHA1 Message Date
6d228ee205 Update src/app/page.tsx 2026-03-06 14:47:47 +00:00
a37658bc99 Update src/app/layout.tsx 2026-03-06 14:47:46 +00:00
f4ebe2ff6d Merge version_1 into main
Merge version_1 into main
2026-03-06 14:46:45 +00:00
bc4d1ca361 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:46:00 +00:00
12c6adf764 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:44:50 +00:00
2 changed files with 9 additions and 66 deletions

View File

@@ -1,76 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Tree Service Nashville TN | Expert Removal & Trimming | Sky Tree Services", 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1438,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -67,8 +67,8 @@ export default function HomePage() {
tagIcon={Shield} tagIcon={Shield}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Call Now: 615-568-9651", href: "tel:+1-615-568-9651" },
{ text: "Get Free Estimate", href: "#contact" }, { text: "Get Free Estimate", href: "#contact" },
{ text: "Call Now: 615-568-9651", href: "tel:+1-615-568-9651" },
]} ]}
buttonAnimation="slide-up" 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" 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> </div>
</ThemeProvider> </ThemeProvider>
); );
} }