--- // Base Layout for WorkRoot IT Solutions // Features: SEO meta tags, global styles, header, footer slot, skip link import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; import Analytics from '../components/Analytics.astro'; import PWAInstallPrompt from '../components/PWAInstallPrompt.astro'; import WhatsAppFab from '../components/WhatsAppFab.astro'; import MobileStickyCtaBar from '../components/MobileStickyCtaBar.astro'; import '../styles/global.css'; interface Props { title: string; description?: string; canonicalUrl?: string; ogImage?: string; noIndex?: boolean; } const { title, description = 'WorkRoot IT Solutions LLP — Expert software development, web & mobile apps, ERP systems, and government IT solutions. Based in Maharashtra, India. Founded 2022.', canonicalUrl = Astro.url.href, ogImage = '/og-image.jpg', noIndex = false, } = Astro.props; const siteName = 'WorkRoot IT Solutions LLP'; const fullTitle = title === 'Home' ? siteName : `${title} | ${siteName}`; ---