Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
talha_silentcontent
/
src
/
components
/
Policy
/
Filename :
TermsAndConditions.tsx
back
Copy
import React from 'react'; import { Card, CardTitle, CardDescription, CardContent } from '@/components/ui/card'; const TermsAndCondition: React.FC = () => { return ( <Card className="border-0"> <CardContent className='pb-20'> <CardTitle className="text-4xl text-white p-0 font-bold mb-12">Terms and Conditions</CardTitle> <CardDescription className="mb-4"> <CardTitle className="text-input">Introduction</CardTitle> <CardDescription className="mb-8"> These Terms and Conditions govern your use of our website and services. By accessing our website, you agree to comply with these terms. If you do not agree, please refrain from using our site. </CardDescription> <CardTitle className="text-input">1. Use of Website</CardTitle> <CardDescription className="mb-8"> You agree to use our website for lawful purposes only and in compliance with all applicable laws and regulations. </CardDescription> <CardTitle className="text-input">2. Intellectual Property</CardTitle> <CardDescription className="mb-8"> All content on this website, including text, graphics, logos, and images, is our property or the property of our licensors. You may not reproduce, distribute, or use any content without prior written consent. </CardDescription> <CardTitle className="text-input">3. User Accounts</CardTitle> <CardDescription className="mb-8"> If you create an account, you are responsible for maintaining its confidentiality and for all activities under your account. Notify us immediately of any unauthorised access. </CardDescription> <CardTitle className="text-input">4. Limitation of Liability</CardTitle> <CardDescription className="mb-8"> We are not liable for any damages arising from your use of our website or inability to access it. This includes, but is not limited to, indirect, incidental, or consequential damages. </CardDescription> <CardTitle className="text-input">5. Third-Party Links</CardTitle> <CardDescription className="mb-8"> Our website may contain links to third-party websites. We are not responsible for the content or practices of these external sites. </CardDescription> <CardTitle className="text-input">6. Termination</CardTitle> <CardDescription className="mb-8"> We reserve the right to terminate your access to our website for any breach of these terms. </CardDescription> <CardTitle className="text-input">7. Governing Law</CardTitle> <CardDescription className="mb-8"> These Terms and Conditions are governed by and construed in accordance with the laws of [Your Jurisdiction]. </CardDescription> <CardTitle className="text-input">Contact Us</CardTitle> <CardDescription> For any questions regarding these Terms and Conditions, please contact us at: [Email Address]. </CardDescription> </CardDescription> </CardContent> </Card> ); }; export default TermsAndCondition;