From d97975db1dcf41064eb9fc6aa9a716ff6ed80c59 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:37:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++----------------------------------------- 1 file changed, 5 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a04ad93..770db1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,16 @@ 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 "./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 | Plantable Pencils", description: "Transform your writing into environmental impact with Flóraison plantable pencils made from 100% recycled newspaper."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}