Reliable Performance
+Our infrastructure is designed for high availability and optimal performance with 99.9% uptime guarantee.
+diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e868be1..545d34b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,301 +1,377 @@ --- -import '../styles/global.css'; +import Layout from '../layouts/Layout.astro'; -interface Props { - title: string; - description?: string; - image?: string; - canonicalURL?: string; - type?: 'website' | 'article'; -} - -const { - title, - description = "SiliconPin offers high-performance hosting solutions for PHP, Node.js, Python, K8s, and K3s applications with 24/7 support.", - image = "https://images.unsplash.com/photo-1551731409-43eb3e517a1a?q=80&w=2000&auto=format&fit=crop", - canonicalURL = new URL(Astro.url.pathname, Astro.site).href, - type = "website", -} = Astro.props; - -// Organization schema -const organizationSchema = { - "@context": "https://schema.org", - "@type": "Organization", - "name": "SiliconPin", - "url": "https://siliconpin.com", - "logo": "https://siliconpin.com/assets/logo.svg", - "contactPoint": { - "@type": "ContactPoint", - "telephone": "+91-700-160-1485", - "contactType": "customer service", - "availableLanguage": ["English"] - }, - "address": { - "@type": "PostalAddress", - "streetAddress": "121 Lalbari, GourBongo Road", - "addressLocality": "Habra", - "addressRegion": "W.B.", - "postalCode": "743271", - "addressCountry": "India" - }, - "sameAs": [ - "https://www.linkedin.com/company/siliconpin", - "https://x.com/dwd_consultancy", - "https://www.facebook.com/profile.php?id=100088549643337", - "https://instagram.com/siliconpin.com_" - ] -}; +// Page-specific SEO metadata +const pageTitle = "SiliconPin - High-Performance Hosting Solutions"; +const pageDescription = "SiliconPin offers reliable, high-performance hosting solutions for PHP, Node.js, Python, Kubernetes (K8s), and K3s with 24/7 technical support."; +const pageImage = "https://images.unsplash.com/photo-1551731409-43eb3e517a1a?q=80&w=2000&auto=format&fit=crop"; --- - - -
- - - - +