6 Commits

Author SHA1 Message Date
e1b9436e06 Merge version_2 into main
Merge version_2 into main
2026-03-03 23:34:30 +00:00
5379c1db92 Update src/app/page.tsx 2026-03-03 23:34:25 +00:00
4401e7151d Update src/app/layout.tsx 2026-03-03 23:34:25 +00:00
1580103e14 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:25:54 +00:00
787d8135c5 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:24:37 +00:00
53fdc7f4cb Merge version_1 into main
Merge version_1 into main
2026-03-03 23:23:13 +00:00
2 changed files with 8 additions and 45 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "EcoTimber - Sustainable Timber Recycling Solutions", description: "Professional timber recycling services for businesses. Transform waste into valuable resources with EcoTimber's certified sustainable solutions.", keywords: "timber recycling, wood waste management, sustainable recycling, reclaimed materials, environmental solutions", openGraph: {
title: "EcoTimber - Sustainable Timber Recycling Solutions", description: "Transform your timber waste into valuable reclaimed materials with EcoTimber's professional recycling services.", siteName: "EcoTimber", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-15407.jpg", alt: "Timber recycling operation"
}
]
},
twitter: {
card: "summary_large_image", title: "EcoTimber - Sustainable Timber Recycling", description: "Professional timber waste recycling and reclaimed material solutions for businesses.", images: ["http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-15407.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "EcoTimber - Sustainable Timber Recycling Solutions", description: "Transform timber waste into valuable resources with EcoTimber's comprehensive recycling solutions."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -195,8 +195,8 @@ export default function LandingPage() {
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="your@company.com"
buttonText="Request Quote"
termsText="We'll contact you within 24 hours to discuss your recycling needs."
buttonText="Get Your Free Quote"
termsText="Free consultation—no obligation. We'll contact you within 24 hours to discuss your recycling needs."
tagAnimation="slide-up"
/>
</div>