"use client"; import { poppins } from "@/lib/font"; import "@/node_modules/react-modal-video/css/modal-video.css"; import "../public/assets/css/bootstrap.css"; import "../public/assets/css/color.css"; import "../public/assets/css/style.css"; import "swiper/css"; import "swiper/css/pagination"; import "swiper/css/free-mode"; import Script from "next/script"; import { usePathname } from "next/navigation"; export default function RootLayout({ children }) { const pathname = usePathname(); const siteUrl = "https://rapharehab.ca"; const canonicalUrl = `${siteUrl}${pathname}`; const logoUrl = `${siteUrl}/assets/images/logo.png`; const ogImage = `${siteUrl}/assets/images/logo.jpg`; const pageTitle = "Best Pain Relief & Physiotherapy - Repharehab Clinic"; const pageDescription = "Rapharehab offers trusted physiotherapy and pain relief treatments with professional care tailored to restore your health and mobility."; return (