import { Metadata } from 'next' import { generateMetadata } from '@/lib/seo' import { Header } from '@/components/header' import { Footer } from '@/components/footer' import { CustomSolutionCTA } from '@/components/ui/custom-solution-cta' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { Shield, Zap, Users, Globe, Server, Cpu } from 'lucide-react' export const metadata: Metadata = generateMetadata({ title: 'About Us - SiliconPin', description: 'Learn more about SiliconPin, our mission, values, and the team behind our high-performance hosting solutions and developer services.', }) export default function AboutPage() { const coreValues = [ { title: 'Reliability', description: 'We understand that downtime means lost business. That\'s why we prioritize reliability in everything we do, from our infrastructure to our customer service.', icon: Server, color: 'text-blue-600' }, { title: 'Security', description: 'In an increasingly digital world, security is paramount. We implement robust security measures to protect our clients\' data and applications.', icon: Shield, color: 'text-green-600' }, { title: 'Innovation', description: 'We continuously explore new technologies and methodologies to improve our services and provide our clients with cutting-edge solutions.', icon: Zap, color: 'text-purple-600' }, { title: 'Customer Focus', description: '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.', icon: Users, color: 'text-orange-600' } ] const whyChooseUs = [ '24/7 expert technical support', '99.9% uptime guarantee', 'Scalable infrastructure to grow with your business', 'Comprehensive security measures including DDoS protection and SSL certificates', 'Expertise across various technologies including PHP, Node.js, Python, and Kubernetes', 'Commitment to customer success through personalized service' ] return (
{/* Page Header */}

About SiliconPin

We promote awareness about digital freedom by providing software and hardware development and research

{/* Our Story */} Our Story

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.

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.

{/* Our Mission */} Our Mission

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.

{/* Our Values */} Our Values
{coreValues.map((value, index) => { const Icon = value.icon return (

{value.title}

{value.description}

) })}
{/* Why Choose Us */} Why Choose SiliconPin?
{whyChooseUs.map((reason, index) => (
{reason}
))}
{/* Location & Contact */} Our Location

Headquarters

121 Lalbari, GourBongo Road
Habra, West Bengal 743271
India

Get in Touch

Phone: +91-700-160-1485

Email: support@siliconpin.com

Founded 2021 India Based 24/7 Support
{/* CTA Section */}
) }