Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-03-06 13:43:52 +00:00

View File

@@ -1,58 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Flóraison | Plantable Pencils for a Sustainable Future", description: "Discover Flóraison—plantable pencils made from recycled newspaper with biodegradable seed capsules. Write today, grow tomorrow. Join the sustainability movement.", keywords: "plantable pencil, sustainable writing, eco-friendly pencil, biodegradable, recycled newspaper, seed pencil, environmental product, sustainable innovation", metadataBase: new URL("https://flóraison.com"),
alternates: {
canonical: "https://flóraison.com"},
openGraph: {
title: "Flóraison | Where Words Take Root", description: "Transform your writing into environmental action. Flóraison plantable pencils combine premium quality with genuine sustainability impact.", url: "https://flóraison.com", siteName: "Flóraison", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-stationery-elements-grey-background_23-2148851492.jpg", alt: "Flóraison plantable pencil transforming into a growing plant"},
],
},
twitter: {
card: "summary_large_image", title: "Flóraison | Plantable Pencils", description: "Write with purpose. Plant with impact. Discover sustainable writing that grows into real environmental change.", images: ["http://img.b2bpic.net/free-photo/top-view-arrangement-with-stationery-elements-grey-background_23-2148851492.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Flóraison - Sustainable Writing, Growing Impact", description: "Transform your writing into environmental action with Flóraison plantable pencils."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}