diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 770db1e..a04ad93 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,58 @@ 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", description: "Transform your writing into environmental impact with Flóraison plantable pencils made from 100% recycled newspaper."}; + 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, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +