diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c3cec3..845438f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,18 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; export const metadata: Metadata = { - title: "Il Fotografo Di Pezzi Roberto | Fotocamere e Riparazioni Cagliari", description: "Vendita fotocamere nuovo/usato, riparazioni specializzate e consulenza tecnica a Cagliari. 4.8★ - Centro autorizzato con 40 anni di esperienza.", keywords: "negozio fotografia Cagliari, riparazione fotocamere, fotocamere usate, mirrorless, reflex, obiettivi, Sardegna", metadataBase: new URL("https://robertopezzi.it"), - alternates: { - canonical: "https://robertopezzi.it"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Il Fotografo Di Pezzi Roberto | Fotocamere Professionali Cagliari", description: "Vendita, riparazioni e consulenza per fotografi professionali e appassionati. Negozio specializzato a Cagliari.", url: "https://robertopezzi.it", siteName: "Il Fotografo Di Pezzi Roberto", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/extreme-closeup-professional-camera-slider-shot-black-white_181624-785.jpg", alt: "Fotocamere professionali"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Il Fotografo Di Pezzi Roberto", description: "Il tuo negozio di fotografia di fiducia a Cagliari", images: ["http://img.b2bpic.net/free-photo/extreme-closeup-professional-camera-slider-shot-black-white_181624-785.jpg"], - }, -}; + title: "Il Fotografo Di Pezzi - Fotografia Professionale a Cagliari", description: "Vendita di fotocamere nuovo e usato, riparazioni specializzate e consulenza esperta dal 1985."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}