import type { Metadata } from 'next' import '../src/styles/index.css' import { BackToTop } from '../src/components/BackToTop' import { MatomoAnalytics } from '../src/components/MatomoAnalytics' export const metadata: Metadata = { metadataBase: new URL('https://filamenteka.rs'), title: { default: 'Bambu Lab Oprema Srbija | Filamenteka', template: '%s | Filamenteka', }, description: 'Privatna prodaja originalne Bambu Lab opreme u Srbiji. Filamenti, 3D stampaci, build plate podloge, mlaznice, rezervni delovi i oprema.', openGraph: { type: 'website', locale: 'sr_RS', siteName: 'Filamenteka', title: 'Bambu Lab Oprema Srbija | Filamenteka', description: 'Privatna prodaja originalne Bambu Lab opreme u Srbiji.', url: 'https://filamenteka.rs', }, robots: { index: true, follow: true, }, alternates: { canonical: 'https://filamenteka.rs', }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { const jsonLd = { '@context': 'https://schema.org', '@type': 'LocalBusiness', name: 'Filamenteka', description: 'Privatna prodaja originalne Bambu Lab opreme u Srbiji', url: 'https://filamenteka.rs', telephone: '+381631031048', address: { '@type': 'PostalAddress', addressCountry: 'RS', }, priceRange: 'RSD', } return (