sp/src/pages/about-us.astro

95 lines
4.8 KiB
Plaintext

---
import Layout from '../layouts/Layout.astro';
// Page-specific SEO metadata
const pageTitle = "About Us | SiliconPin";
const pageDescription = "Learn more about SiliconPin, our mission, values, and the team behind our high-performance hosting solutions.";
const pageImage = "https://images.unsplash.com/photo-1551731409-43eb3e517a1a?q=80&w=2000&auto=format&fit=crop";
---
<Layout
title={pageTitle}
description={pageDescription}
image={pageImage}
type="website"
>
<main class="container mx-auto px-4 sm:px-6 py-8 sm:py-12">
<div class="text-center mb-8 sm:mb-12">
<h1 class="text-3xl sm:text-4xl font-bold text-[#6d9e37] mb-3 sm:mb-4">About SiliconPin</h1>
<p class="text-lg sm:text-xl max-w-3xl mx-auto text-neutral-300">
Empowering businesses with reliable, high-performance hosting solutions
</p>
</div>
<div class="max-w-4xl mx-auto space-y-12">
<section class="bg-neutral-800 rounded-lg p-6 sm:p-8 border border-neutral-700">
<h2 class="text-2xl font-bold text-white mb-4">Our Story</h2>
<p class="text-neutral-300 mb-4">
SiliconPin was founded in 2021 with a clear mission: to provide businesses of all sizes with reliable, high-performance hosting solutions that enable growth and innovation. What started as a small team of passionate developers and system administrators has grown into a trusted hosting provider serving clients across various industries.
</p>
<p class="text-neutral-300">
Based in Habra, West Bengal, India, our team combines technical expertise with a deep understanding of business needs to deliver hosting solutions that are not just technically sound but also aligned with our clients' business objectives.
</p>
</section>
<section class="bg-neutral-800 rounded-lg p-6 sm:p-8 border border-neutral-700">
<h2 class="text-2xl font-bold text-white mb-4">Our Mission</h2>
<p class="text-neutral-300">
At SiliconPin, our mission is to empower businesses through technology by providing reliable, secure, and scalable hosting solutions. We believe that technology should enable businesses to focus on what they do best, without worrying about infrastructure management or technical complexities.
</p>
</section>
<section class="bg-neutral-800 rounded-lg p-6 sm:p-8 border border-neutral-700">
<h2 class="text-2xl font-bold text-white mb-4">Our Values</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-xl font-medium text-[#6d9e37] mb-2">Reliability</h3>
<p class="text-neutral-300">
We understand that downtime means lost business. That's why we prioritize reliability in everything we do, from our infrastructure to our customer service.
</p>
</div>
<div>
<h3 class="text-xl font-medium text-[#6d9e37] mb-2">Security</h3>
<p class="text-neutral-300">
In an increasingly digital world, security is paramount. We implement robust security measures to protect our clients' data and applications.
</p>
</div>
<div>
<h3 class="text-xl font-medium text-[#6d9e37] mb-2">Innovation</h3>
<p class="text-neutral-300">
We continuously explore new technologies and methodologies to improve our services and provide our clients with cutting-edge solutions.
</p>
</div>
<div>
<h3 class="text-xl font-medium text-[#6d9e37] mb-2">Customer Focus</h3>
<p class="text-neutral-300">
Our clients' success is our success. We work closely with our clients to understand their needs and provide tailored solutions that help them achieve their goals.
</p>
</div>
</div>
</section>
<section class="bg-neutral-800 rounded-lg p-6 sm:p-8 border border-neutral-700">
<h2 class="text-2xl font-bold text-white mb-4">Why Choose SiliconPin?</h2>
<ul class="list-disc list-inside space-y-3 text-neutral-300">
<li>24/7 expert technical support</li>
<li>99.9% uptime guarantee</li>
<li>Scalable infrastructure to grow with your business</li>
<li>Comprehensive security measures including DDoS protection and SSL certificates</li>
<li>Expertise across various technologies including PHP, Node.js, Python, and Kubernetes</li>
<li>Commitment to customer success through personalized service</li>
</ul>
</section>
<div class="text-center">
<a
href="/contact"
class="inline-flex items-center justify-center rounded-md bg-[#6d9e37] px-6 py-3 text-base font-medium text-white hover:bg-[#598035] transition-colors"
>
Get in Touch
</a>
</div>
</div>
</main>
</Layout>