Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user