3 Commits

Author SHA1 Message Date
5c6e9fbf19 Update src/app/page.tsx 2026-03-07 23:18:17 +00:00
1d68651008 Update src/app/layout.tsx 2026-03-07 23:18:17 +00:00
c64215162a Merge version_1 into main
Merge version_1 into main
2026-03-07 23:14:57 +00:00
2 changed files with 8 additions and 43 deletions

View File

@@ -1,54 +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 "./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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Tree Service Nashville | Sky Tree Services", description: "Expert tree removal, trimming, and stump grinding in Nashville. 4.9★ rated, licensed & insured, 24/7 emergency service. Free estimates available.", keywords: "tree removal Nashville, tree service Nashville, tree trimming, stump grinding, emergency tree removal, arborist Nashville", metadataBase: new URL("https://skytreeservices.com"), title: "Sky Tree Services - Professional Tree Removal Nashville", description: "Fast, affordable, and reliable tree service available 24/7. Professional tree removal, trimming, and stump grinding in Nashville, TN."};
alternates: {
canonical: "https://skytreeservices.com"
},
openGraph: {
title: "Sky Tree Services | Nashville Tree Removal & Trimming", description: "Professional tree removal, trimming, and stump grinding in Nashville. 4.9★ rated local service. Call 615-568-9651 for 24/7 emergency response.", url: "https://skytreeservices.com", siteName: "Sky Tree Services", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41449.jpg", alt: "professional tree service crew working safely"
}
]
},
twitter: {
card: "summary_large_image", title: "Sky Tree Services | Nashville Tree Removal", description: "Expert tree removal and trimming in Nashville. 4.9★ rated, licensed & insured. Call 615-568-9651 for free estimate.", images: ["http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41449.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} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -64,8 +64,8 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
metrics={[ metrics={[
{ id: "1", value: "4.9 ⭐", description: "Rating from 72+ verified Google reviews" }, { id: "1", value: "4.9 ⭐", description: "Rating from 72+ verified Google reviews" },
{ id: "2", value: "✔ Fully Insured", description: "Licensed and insured for your complete peace of mind" }, { id: "2", value: "24/7 Service", description: "Always available for emergency tree removal" },
{ id: "3", value: "24/7 Service", description: "Always available for emergency tree removal" }, { id: "3", value: "✔ Fully Insured", description: "Licensed and insured for your complete peace of mind" },
{ id: "4", value: "Free Estimates", description: "No obligation quotes for any tree service" } { id: "4", value: "Free Estimates", description: "No obligation quotes for any tree service" }
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"