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, Database, Eye, Users, FileText, Trash2 } from 'lucide-react' export const metadata: Metadata = generateMetadata({ title: 'Privacy Policy - SiliconPin', description: 'Learn how SiliconPin collects, uses, and protects your personal information. Our privacy policy outlines our data practices and your rights.', }) export default function PrivacyPage() { const lastUpdated = "March 18, 2025" const informationTypes = { personal: [ 'Name', 'Email address', 'Phone number', 'Billing address', 'Payment information', 'Company information', 'Account credentials' ], usage: [ 'Log files', 'IP addresses', 'Browser type', 'Pages visited', 'Time spent on pages', 'Referring website addresses', 'Resource usage statistics' ] } const dataUses = [ 'Providing, maintaining, and improving our services', 'Processing and completing transactions', 'Sending administrative information, such as service updates and security alerts', 'Responding to your comments, questions, and requests', 'Sending promotional materials and newsletters (with opt-out options)', 'Monitoring and analyzing trends, usage, and activities', 'Detecting, preventing, and addressing technical issues', 'Complying with legal obligations' ] const userRights = [ 'Access', 'Correction', 'Deletion', 'Objection', 'Data portability', 'Withdraw consent' ] const sharingScenarios = [ { title: 'With Service Providers', description: 'We may share your information with third-party service providers who perform services on our behalf.' }, { title: 'For Legal Reasons', description: 'We may disclose your information if required to do so by law.' }, { title: 'Business Transfers', description: 'In the event of a merger or acquisition, your information may be transferred.' }, { title: 'With Your Consent', description: 'We may share your information with your permission.' } ] return (
{/* Page Header */}

Privacy Policy

How we collect, use, and protect your information

Last Updated: {lastUpdated}
{/* Introduction */}

At SiliconPin, we are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our hosting services or visit our website.

Please read this Privacy Policy carefully. By accessing or using our services, you acknowledge that you have read, understood, and agree to be bound by all the terms of this Privacy Policy.

{/* Information We Collect */} Information We Collect

1.1 Personal Information

We may collect personal information that you provide directly to us, such as:

{informationTypes.personal.map((item, index) => (
{item}
))}

1.2 Usage Information

We may collect information about how you use our services, including:

{informationTypes.usage.map((item, index) => (
{item}
))}

1.3 Cookies and Similar Technologies

We use cookies and similar tracking technologies to track activity on our website and to hold certain information. Cookies are files with a small amount of data that may include an anonymous unique identifier. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent.

{/* How We Use Your Information */} How We Use Your Information

We may use the information we collect for various purposes, including:

{dataUses.map((use, index) => (
{use}
))}
{/* Information Sharing and Disclosure */} Information Sharing and Disclosure

We may share your information in the following situations:

{sharingScenarios.map((scenario, index) => (

{scenario.title}

{scenario.description}

))}

We do not sell, rent, or trade your personal information with third parties for their commercial purposes.

{/* Data Security */} Data Security

We implement appropriate technical and organizational measures to protect your personal information. However, no method of transmission over the internet is 100% secure. While we strive to use commercially acceptable means to protect your personal information, we cannot guarantee its absolute security.

{/* Data Retention */} Data Retention

We will retain your personal information only for as long as is necessary for the purposes outlined in this Privacy Policy. We will retain and use your information to the extent necessary to comply with our legal obligations, resolve disputes, and enforce our policies.

{/* Your Rights */} Your Rights

You may have certain rights regarding your personal information, such as:

{userRights.map((right, index) => (
{right}
))}

To exercise these rights, please contact us using the information provided at the end of this policy.

{/* Children's Privacy */} Children's Privacy

Our services are not intended for children under 16. We do not knowingly collect personal information from children under 16. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to take necessary actions.

{/* Changes to This Privacy Policy */} Changes to This Privacy Policy

We may update our Privacy Policy periodically. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Last Updated" date. You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

{/* Contact Information */} Contact Us

If you have any questions about this Privacy Policy, please contact us:

Email:{' '} privacy@siliconpin.com

Phone: +91-700-160-1485

Address: 121 Lalbari, GourBongo Road
Habra, West Bengal 743271
India

{/* CTA Section */}
) }