diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb71dc6..02878b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Casa do Ferro | Premium Construction Materials Local Authority", description: "Trusted supplier of premium construction materials for 20 years. Expert guidance, rapid delivery, quality guaranteed. Serving contractors and professionals across the region.", keywords: "construction materials, structural steel, lumber, concrete, supplier, contractor materials, building materials, local contractor, construction supplies", metadataBase: new URL("https://casadoferro.com"), - alternates: { - canonical: "https://casadoferro.com"}, - openGraph: { - title: "Casa do Ferro - Premium Construction Materials", description: "Trusted by construction professionals for premium materials, expert guidance, and rapid delivery.", url: "https://casadoferro.com", siteName: "Casa do Ferro", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/many-metal-kegs-beer_1398-2537.jpg", alt: "Casa do Ferro Premium Construction Materials"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Casa do Ferro - Premium Construction Materials", description: "20 years of local expertise in premium construction materials", images: ["http://img.b2bpic.net/free-photo/many-metal-kegs-beer_1398-2537.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Casa do Ferro - Premium Construction Materials", description: "Trusted supplier of high-quality construction materials for professionals"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -