From b41e1049ff5e7d29b5fb8e9af7e6689830a75311 Mon Sep 17 00:00:00 2001 From: "Kar l5.G" Date: Thu, 20 Mar 2025 19:51:32 +0530 Subject: [PATCH] mistake on layout ok --- src/layouts/Layout.astro | 650 +++++++++++++++++---------------------- 1 file changed, 287 insertions(+), 363 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 545d34b..e868be1 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,377 +1,301 @@ --- -import Layout from '../layouts/Layout.astro'; +import '../styles/global.css'; -// 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"; +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_" + ] +}; --- - - -
- -
+ + + + + + + -
-
-

SiliconPin

-

- High-performance hosting solutions for modern applications -

-
- - Get Started + + {title} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ + + + +
-
+ + + -
-
-
-

Why Choose SiliconPin?

-

- We provide reliable and scalable hosting solutions for businesses of all sizes -

-
+ - - - \ No newline at end of file + } +