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 { CreditCard, Clock, Ban, RefreshCcw, MessageSquare, CheckCircle } from 'lucide-react'
export const metadata: Metadata = generateMetadata({
title: 'Refund Policy - SiliconPin',
description:
'Learn about SiliconPin\'s refund policy for our hosting services. Find information about eligibility, process, and timeline for refunds.',
})
export default function RefundPolicyPage() {
const lastUpdated = "March 18, 2025"
const refundEligibility = [
{
title: '1.1 Service Cancellation within 30 Days',
description: 'If you are dissatisfied with our services for any reason, you may request a refund within 30 days of the initial purchase date. This is our "30-day satisfaction guarantee" and applies to first-time purchases of hosting plans.',
icon: Clock,
color: 'text-green-600'
},
{
title: '1.2 Service Unavailability',
description: 'If our service experiences extended downtime (exceeding our 99.9% uptime guarantee) within a billing period, you may be eligible for a prorated refund for the affected period. This will be calculated based on the duration of the downtime and the cost of your hosting plan.',
icon: RefreshCcw,
color: 'text-orange-600'
},
{
title: '1.3 Service Termination by SiliconPin',
description: 'If SiliconPin terminates your service for reasons other than violation of our Terms and Conditions, you may be eligible for a prorated refund for the unused portion of your current billing period.',
icon: CheckCircle,
color: 'text-blue-600'
}
]
const nonRefundableItems = [
'Domain registration fees',
'Setup fees',
'Additional services or add-ons',
'Services cancelled after the 30-day satisfaction guarantee period',
'Services terminated due to violation of our Terms and Conditions',
'Transaction fees or currency conversion charges'
]
const contactMethods = [
{
method: 'Email',
value: 'support@siliconpin.com',
href: 'mailto:support@siliconpin.com'
},
{
method: 'Phone',
value: '+91-700-160-1485',
href: 'tel:+917001601485'
},
{
method: 'Contact Form',
value: 'Website contact form',
href: '/contact'
}
]
return (
{/* Page Header */}
Refund Policy
Our commitment to fair and transparent refund procedures
Last Updated: {lastUpdated}
{/* Introduction */}
At SiliconPin, we strive to provide high-quality hosting services that meet our customers' expectations.
We understand that there may be circumstances where a refund is warranted, and we have established this
refund policy to outline the conditions and procedures for such situations.
{/* Eligibility for Refunds */}
Eligibility for Refunds
{refundEligibility.map((item, index) => {
const Icon = item.icon
return (
)
})}
{/* Non-Refundable Items */}
Non-Refundable Items
The following items and circumstances are generally not eligible for refunds:
{nonRefundableItems.map((item, index) => (
))}
{/* Refund Process */}
Refund Process
3.1 Requesting a Refund
To request a refund, please contact our customer support team through one of the following methods:
{contactMethods.map((contact, index) => (
))}
Please include your account information, the service you wish to cancel, and the reason for your refund request.
3.2 Processing Time
7 Business Days Processing
We aim to process all refund requests within 7 business days of receiving the request.
The actual time for the refunded amount to appear in your account may vary depending on your payment provider.
3.3 Refund Method
Refunds will be issued using the same payment method used for the original purchase.
If this is not possible, we will work with you to find an alternative method.
{/* Policy Modifications */}
Policy Modifications
SiliconPin reserves the right to modify this refund policy at any time. Any changes to this policy
will be posted on our website and will apply to purchases made after the date of modification.
{/* Contact Information */}
Contact Us
If you have any questions or concerns about our refund policy, please don't hesitate to contact us:
Email:{' '}
support@siliconpin.com
Phone: +91-700-160-1485
Address: 121 Lalbari, GourBongo Road
Habra, West Bengal 743271
India
{/* CTA Section */}
)
}