diff --git a/app/(pages)/about/page.tsx b/app/(pages)/about/page.tsx index e7948ddaa..605580b4f 100644 --- a/app/(pages)/about/page.tsx +++ b/app/(pages)/about/page.tsx @@ -139,13 +139,6 @@ export default function AboutPage() {

{COMPANY_INFO.name}

-
-

- Registered Address -

-

{COMPANY_INFO.address}

-
-

Contact Email diff --git a/app/(pages)/constants.ts b/app/(pages)/constants.ts index d46c27814..3027c39fd 100644 --- a/app/(pages)/constants.ts +++ b/app/(pages)/constants.ts @@ -1,18 +1,17 @@ -// Company Information - Update these values with your actual business details +// Company Information - Update email values when ready export const COMPANY_INFO = { - name: "[COMPANY NAME]", - address: "[ADDRESS]", + name: "Practitionist", email: "[EMAIL]", supportEmail: "[SUPPORT_EMAIL]", - phone: "[PHONE]", - jurisdiction: "[JURISDICTION]", + jurisdiction: "Bangalore, Karnataka, India", } as const; // Policy Dates - Update when policies are revised export const POLICY_DATES = { - privacyLastUpdated: "[LAST UPDATED]", - termsLastUpdated: "[LAST UPDATED]", - refundLastUpdated: "[LAST UPDATED]", + privacyLastUpdated: "February 2026", + termsLastUpdated: "February 2026", + refundLastUpdated: "February 2026", + contractorLastUpdated: "February 2026", } as const; // Business Hours @@ -40,6 +39,7 @@ export const SUPPORT_LINKS = [ { href: "/refund", label: "Cancellation & Refund Policy" }, { href: "/privacy", label: "Privacy Policy" }, { href: "/terms", label: "Terms & Conditions" }, + { href: "/contractors", label: "Contractor Agreement" }, ] as const; // Page Meta Information @@ -72,6 +72,11 @@ export const PAGE_META = { description: "Understanding our cancellation and refund procedures for all service types", }, + contractors: { + title: "Contractor Agreement", + description: + "Terms governing the relationship between Practitionist and independent consultants", + }, } as const; // About Page Data @@ -145,8 +150,8 @@ export const ABOUT_DATA = { description: "Clear pricing with no hidden fees", }, { - title: "24/7 Support", - description: "Dedicated customer support to help you anytime", + title: "Dedicated Support", + description: "Customer support to help you when you need it", }, ], } as const; @@ -157,14 +162,14 @@ export const PRICING_DATA = { "Consultants set their own rates based on their expertise and market demand", "You see the exact price before booking any session", "No hidden fees - the displayed price is what you pay", - "Platform commission is already included in the price", + "Platform service fee is already included in the price", ], commissionBenefits: [ "Maintain secure payment processing infrastructure", "Provide integrated video conferencing and communication tools", "Host and deliver course materials and content", "Ensure platform security and data protection", - "Offer 24/7 customer support", + "Offer customer support", "Continuously improve the user experience", ], paymentMethods: [ @@ -183,7 +188,7 @@ export const PRICING_DATA = { { question: "Are there any additional fees?", answer: - "No, there are no hidden fees. The price displayed is the final amount you will pay. The platform commission is already included in the displayed price.", + "No, there are no hidden fees. The price displayed is the final amount you will pay. The platform service fee is already included in the displayed price.", }, { question: "Can I get a refund if I cancel?", @@ -198,12 +203,12 @@ export const PRICING_DATA = { { question: "Do you offer discounts or promotional pricing?", answer: - "Individual consultants may offer promotional pricing or discounts for their services. These will be clearly displayed on their profiles and during the booking process. We also occasionally run platform-wide promotions - subscribe to our newsletter to stay updated.", + "Individual consultants may offer promotional pricing or discounts for their services. These will be clearly displayed on their profiles and during the booking process.", }, { question: "How are consultants paid?", answer: - "Consultants receive their earnings after the session is completed successfully. The platform commission is automatically deducted, and the remaining amount is transferred to the consultant's registered bank account according to the settlement schedule.", + "Consultants receive their earnings after the session is completed successfully. The platform service fee is automatically deducted, and the remaining amount is transferred to the consultant's registered bank account according to the settlement schedule.", }, ], } as const; @@ -211,7 +216,3 @@ export const PRICING_DATA = { // Helper function to get mailto link export const getMailtoLink = (email: string = COMPANY_INFO.email) => `mailto:${email}`; - -// Helper function to get tel link -export const getTelLink = (phone: string = COMPANY_INFO.phone) => - `tel:${phone}`; diff --git a/app/(pages)/contactus/page.tsx b/app/(pages)/contactus/page.tsx index a4167b593..5a72f9ac3 100644 --- a/app/(pages)/contactus/page.tsx +++ b/app/(pages)/contactus/page.tsx @@ -12,7 +12,7 @@ import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; -import { Mail, MapPin, Phone, Clock, MessageSquare } from "lucide-react"; +import { Mail, Clock, MessageSquare } from "lucide-react"; import { COMPANY_INFO, PAGE_META, @@ -20,7 +20,6 @@ import { INQUIRY_CATEGORIES, SUPPORT_LINKS, getMailtoLink, - getTelLink, } from "../constants"; export default function ContactUsPage() { @@ -51,23 +50,6 @@ export default function ContactUsPage() { - {/* Company Address */} -

-
- -
-
-

Address

-

- {COMPANY_INFO.name} -
- {COMPANY_INFO.address} -

-
-
- - - {/* Email */}
@@ -98,29 +80,6 @@ export default function ContactUsPage() { - {/* Phone */} -
-
- -
-
-

Phone

-

- - {COMPANY_INFO.phone} - -

-

- (Available during business hours) -

-
-
- - - {/* Business Hours */}
@@ -157,7 +116,7 @@ export default function ContactUsPage() { href={link.href} className="text-blue-600 hover:underline" > - • {link.label} + {link.label} ))} @@ -171,7 +130,7 @@ export default function ContactUsPage() { Send us a Message - Fill out the form below and we'll get back to you as soon as + Fill out the form below and we'll get back to you as soon as possible @@ -212,15 +171,6 @@ export default function ContactUsPage() { />
-
- - -
-
-

Multiple Channels

+

Easy to Reach

- Reach us via email, phone, or contact form + Reach us via email or contact form

diff --git a/app/(pages)/contractors/page.tsx b/app/(pages)/contractors/page.tsx new file mode 100644 index 000000000..b1ea9c27e --- /dev/null +++ b/app/(pages)/contractors/page.tsx @@ -0,0 +1,460 @@ +"use client"; + +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Separator } from "@/components/ui/separator"; +import { Users } from "lucide-react"; +import { + COMPANY_INFO, + PAGE_META, + POLICY_DATES, + getMailtoLink, +} from "../constants"; + +export default function ContractorAgreementPage() { + return ( +
+
+ {/* Hero Section */} +
+
+ +
+

+ {PAGE_META.contractors.title} +

+

+ {PAGE_META.contractors.description} +

+
+ +
+ + + + Independent Contractor Agreement + +

+ Last Updated: {POLICY_DATES.contractorLastUpdated} +

+
+ +

+ 1. Introduction +

+

+ This Independent Contractor Agreement ("Agreement") governs + the relationship between {COMPANY_INFO.name} ("Company", + "we", "us") and independent service providers + ("Consultants", "you") who offer educational + services, consultations, classes, webinars, or other professional + services through the Familiarise platform (the "Platform"). +

+

+ Familiarise is operated by {COMPANY_INFO.name}. By registering as + a Consultant on Familiarise, you acknowledge that you have read, + understood, and agree to be bound by this Agreement. +

+ + + +

+ 2. Nature of Relationship +

+ +

+ 2.1 Independent Contractor Status +

+

+ You are an independent contractor and not an employee, agent, + partner, or joint venture participant of {COMPANY_INFO.name} or + Familiarise. Nothing in this Agreement creates or is intended to + create an employer-employee relationship between you and the + Platform. +

+ +

+ 2.2 No Platform Control Over Service Delivery +

+

+ The Platform does not and shall not: +

+
    +
  • Control the manner, method, or means by which you deliver your services
  • +
  • Set your working hours, schedule, or location of work
  • +
  • Provide you with tools, equipment, or workspace
  • +
  • Require exclusivity — you are free to offer services through other platforms or independently
  • +
  • Provide employment benefits, insurance, retirement plans, or other employee protections
  • +
+ +

+ 2.3 Your Autonomy +

+

+ You retain full control over how you deliver your services. You + determine your own teaching methods, content, pricing, availability, + and service terms, subject to Familiarise's community guidelines + and terms of service. +

+ + + +

+ 3. Consultant Obligations +

+ +

+ 3.1 Qualifications and Representation +

+
    +
  • Provide accurate and truthful information about your qualifications, expertise, and experience
  • +
  • Maintain any necessary professional licenses, certifications, or credentials relevant to your services
  • +
  • Not misrepresent your background, skills, or the nature of your services
  • +
+ +

+ 3.2 Professional Conduct +

+
    +
  • Deliver services professionally and in a timely manner
  • +
  • Honor confirmed bookings or provide reasonable notice for cancellations
  • +
  • Maintain respectful and appropriate communication with Students
  • +
  • Protect the confidentiality of Student information
  • +
  • Not engage in harassment, discrimination, or any unlawful conduct
  • +
+ +

+ 3.3 Content Standards +

+
    +
  • Only upload and share content that you own or have the right to use
  • +
  • Ensure your content does not infringe on any third-party intellectual property rights
  • +
  • Not upload illegal, harmful, misleading, or offensive content
  • +
  • Comply with all applicable laws regarding the content you provide
  • +
+ + + +

+ 4. Platform Obligations +

+

+ {COMPANY_INFO.name} agrees to: +

+
    +
  • Provide and maintain the Familiarise platform for service delivery, including booking, scheduling, and communication tools
  • +
  • Process payments securely through our payment partner (Razorpay)
  • +
  • Remit your earnings according to the agreed settlement schedule after deducting the platform service fee
  • +
  • Provide reasonable support for platform-related issues
  • +
  • Maintain the security and integrity of the platform
  • +
  • Handle user disputes in accordance with our published policies
  • +
+ + + +

+ 5. Payment Terms +

+ +

+ 5.1 Pricing +

+

+ You set your own prices for the services you offer through + Familiarise. The Platform charges a service fee on each transaction, + which is displayed to Students as part of the total price. You may + adjust your pricing at any time, subject to any active bookings or + subscriptions. +

+ +

+ 5.2 Settlement +

+
    +
  • Earnings are calculated after deducting the platform service fee and any applicable payment gateway charges
  • +
  • Payouts are processed according to the platform's published settlement schedule
  • +
  • Payments are made to your registered bank account via Razorpay
  • +
  • Payouts are contingent on successful service delivery and compliance with this Agreement
  • +
+ +

+ 5.3 Refunds and Chargebacks +

+

+ If a Student is issued a refund for your services in accordance + with our{" "} + + Cancellation & Refund Policy + + , the corresponding amount will be deducted from your future + earnings or recovered from your account. You agree to cooperate + with the Platform in resolving refund-related disputes. +

+ + + +

+ 6. Tax Responsibilities +

+

+ As an independent contractor, you are solely responsible for: +

+
    +
  • Income Tax: Reporting and paying all applicable income taxes on earnings received through Familiarise
  • +
  • GST: Registering for and remitting Goods and Services Tax if your annual turnover exceeds the applicable threshold under Indian law (currently Rs 20 lakh for services)
  • +
  • TDS: The Platform may deduct Tax Deducted at Source (TDS) on payments as required under the Income Tax Act, 1961
  • +
  • Other Taxes: Any other taxes, duties, or levies applicable in your jurisdiction
  • +
+

+ The Platform does not provide tax advice. You are strongly + encouraged to consult a qualified tax professional regarding your + tax obligations. The Platform does not collect or remit taxes on + your behalf except where legally required (such as TDS). +

+ + + +

+ 7. Intellectual Property +

+ +

+ 7.1 Your Content +

+

+ You retain full ownership of the original educational content, + course materials, and other intellectual property that you create + and upload to Familiarise. By uploading content, you grant + {" "}{COMPANY_INFO.name} a non-exclusive, worldwide, royalty-free + license to use, display, reproduce, and distribute your content + solely as necessary to operate and promote Familiarise and your + services. +

+ +

+ 7.2 Platform IP +

+

+ The Platform's technology, design, trademarks, logos, and + proprietary features are owned by {COMPANY_INFO.name}. You may not + use, copy, or distribute our intellectual property without express + written permission. +

+ +

+ 7.3 License Termination +

+

+ Upon termination of this Agreement, the license granted to the + Platform to use your content will terminate, except for content + that has already been delivered to Students as part of completed + transactions or that is required for legal or record-keeping + purposes. +

+ + + +

+ 8. Non-Circumvention +

+

+ All transactions for services discovered through or facilitated by + Familiarise must be conducted through the Platform's payment + system. You agree not to: +

+
    +
  • Solicit or accept payments from Students outside the Platform for services initially booked or discovered through Familiarise
  • +
  • Redirect Students to external payment methods, personal websites, or competing platforms to circumvent the Platform's fee structure
  • +
  • Share personal contact information with Students for the purpose of conducting off-platform transactions
  • +
+

+ Violation of this clause may result in immediate suspension or + termination of your account, forfeiture of pending earnings, and + any other remedies available to the Platform. +

+ + + +

+ 9. Termination +

+ +

+ 9.1 Termination by Consultant +

+

+ You may terminate this Agreement at any time by deactivating your + Consultant account on Familiarise. You must fulfill all confirmed + bookings and outstanding obligations before termination takes effect. +

+ +

+ 9.2 Termination by Platform +

+

+ The Platform may suspend or terminate your account if you: +

+
    +
  • Violate this Agreement or the Platform's Terms & Conditions
  • +
  • Receive persistent negative reviews or complaints
  • +
  • Engage in fraudulent, illegal, or unethical conduct
  • +
  • Fail to deliver confirmed services without valid reason
  • +
  • Circumvent the Platform's payment system
  • +
  • Misrepresent your qualifications or services
  • +
+ +

+ 9.3 Effect of Termination +

+
    +
  • Pending earnings for completed services will be settled according to the regular schedule
  • +
  • Earnings for disputed or incomplete services may be withheld pending resolution
  • +
  • Your content will be removed from Familiarise within a reasonable timeframe
  • +
  • Obligations that by their nature should survive termination (confidentiality, indemnification, IP licenses for completed transactions) will continue in effect
  • +
+ + + +

+ 10. Liability and Indemnification +

+ +

+ 10.1 Platform Liability +

+

+ The Platform provides technology services "as is" and does not + guarantee a minimum level of bookings, earnings, or engagement. + The Platform is not liable for disputes between you and Students, + or for any indirect, incidental, or consequential damages arising + from your use of Familiarise. +

+ +

+ 10.2 Consultant Indemnification +

+

+ You agree to indemnify, defend, and hold harmless {COMPANY_INFO.name}, + its officers, directors, employees, and agents from any and all + claims, damages, losses, liabilities, and expenses (including legal + fees) arising from: +

+
    +
  • Your services, content, or conduct on Familiarise
  • +
  • Your violation of this Agreement or applicable law
  • +
  • Your infringement of any third-party rights
  • +
  • Any claim by a Student related to the quality, accuracy, or delivery of your services
  • +
  • Your failure to comply with tax obligations
  • +
+ + + +

+ 11. Confidentiality +

+

+ Both parties agree to maintain the confidentiality of any + proprietary or sensitive information shared during the course of + this relationship. This includes but is not limited to: +

+
    +
  • Student personal information and session details
  • +
  • Platform business strategies, algorithms, and proprietary data
  • +
  • Financial information, including earnings and settlement details
  • +
  • Any information designated as confidential by either party
  • +
+

+ This obligation survives termination of this Agreement. +

+ + + +

+ 12. Dispute Resolution +

+

+ Any disputes arising from or relating to this Agreement shall be: +

+
    +
  • First attempted to be resolved through informal negotiation between the parties
  • +
  • If unresolved within 30 days, referred to mediation
  • +
  • Governed by the laws of {COMPANY_INFO.jurisdiction}
  • +
  • Subject to the exclusive jurisdiction of courts in {COMPANY_INFO.jurisdiction}
  • +
+ + + +

+ 13. Modifications +

+

+ We may update this Agreement from time to time. We will notify you + of material changes by email and by posting the updated Agreement + on this page with a revised "Last Updated" date. Your continued + use of Familiarise after such changes constitutes acceptance of + the updated terms. If you do not agree to the changes, you must + stop using the Platform and terminate your account. +

+ + + +

+ 14. Contact Us +

+

+ If you have any questions about this Contractor Agreement, please + contact us: +

+
+

+ Company: {COMPANY_INFO.name} +

+

+ Email:{" "} + + {COMPANY_INFO.email} + +

+

+ Support:{" "} + + {COMPANY_INFO.supportEmail} + +

+

+ Contact Form:{" "} + + Contact Us + +

+
+ + + +
+

+ Building Together +

+

+ We value the expertise and commitment of our Consultants. This + Agreement is designed to create a transparent, fair, and + mutually beneficial relationship. If you have questions or need + clarification on any aspect of this Agreement, our team is here + to help. +

+
+
+
+
+
+
+ ); +} diff --git a/app/(pages)/pricing/page.tsx b/app/(pages)/pricing/page.tsx index 10c3fb3d8..bceeb6648 100644 --- a/app/(pages)/pricing/page.tsx +++ b/app/(pages)/pricing/page.tsx @@ -69,16 +69,15 @@ export default function PricingPage() { {/* Platform Commission */} - Platform Commission + Platform Service Fee - Our commission structure enables us to maintain and improve the - platform + Our service fee enables us to maintain and improve the platform

- Familiarise charges a small platform fee on each transaction. - This fee helps us: + Familiarise charges a service fee on each transaction, which is + already included in the displayed price. This fee helps us:

    {PRICING_DATA.commissionBenefits.map((benefit, index) => ( @@ -87,9 +86,9 @@ export default function PricingPage() {

- Note: The commission is automatically - included in the prices shown to students. Consultants receive - their earnings after the platform fee is deducted. + Note: The service fee is already included + in the prices shown to students. Consultants receive their + earnings after the service fee is deducted.

diff --git a/app/(pages)/privacy/page.tsx b/app/(pages)/privacy/page.tsx index 94e6cc9f6..cde11b604 100644 --- a/app/(pages)/privacy/page.tsx +++ b/app/(pages)/privacy/page.tsx @@ -1,8 +1,8 @@ "use client"; +import { Shield } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Separator } from "@/components/ui/separator"; -import { Shield } from "lucide-react"; import { COMPANY_INFO, PAGE_META, @@ -12,513 +12,811 @@ import { export default function PrivacyPolicyPage() { return ( -
-
- {/* Hero Section */} -
-
- +
+
+
+ {/* Header */} +
+
+ +
+

+ {PAGE_META.privacy.title} +

+

+ {PAGE_META.privacy.description} +

+

+ Last updated: {POLICY_DATES.privacyLastUpdated} +

-

- {PAGE_META.privacy.title} -

-

- {PAGE_META.privacy.description} -

-
-
- - - Privacy Policy -

- Last Updated: {POLICY_DATES.privacyLastUpdated} -

-
- -

- 1. Introduction -

-

- Welcome to Familiarise ("{COMPANY_INFO.name}"). 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 platform, website, and services. -

-

- By accessing or using our services, you agree to this Privacy - Policy. If you do not agree with the terms of this privacy - policy, please do not access the site or use our services. -

- - - -

- 2. Information We Collect -

- -

- 2.1 Personal Information -

-

- We collect personal information that you provide to us when you: -

-
    -
  • - Register for an account (name, email address, phone number) -
  • -
  • - Complete your profile (professional details, expertise, - education) -
  • -
  • Book consultations, classes, webinars, or subscriptions
  • -
  • - Make payments (payment card information processed through - Razorpay) -
  • -
  • Contact our customer support
  • -
  • Participate in surveys, promotions, or feedback forms
  • -
- -

- 2.2 Automatically Collected Information -

-

- When you access our platform, we automatically collect certain - information, including: -

-
    -
  • - Device information (IP address, browser type, operating - system) -
  • -
  • Usage data (pages visited, time spent, click patterns)
  • -
  • - Location information (approximate location based on IP - address) -
  • -
  • Cookies and similar tracking technologies
  • -
- -

- 2.3 Session and Communication Data -

-

During your use of our services, we may collect:

-
    -
  • Chat messages and communications between users
  • -
  • - Video conference metadata (session duration, participants) -
  • -
  • Course materials and content uploads
  • -
  • Ratings and reviews
  • -
- - - -

- 3. How We Use Your Information -

-

- We use the collected information for the following purposes: -

- -

- 3.1 Service Delivery -

-
    -
  • Create and manage your account
  • -
  • Process bookings and schedule appointments
  • -
  • - Facilitate communication between consultants and students -
  • -
  • Provide video conferencing and chat services
  • -
  • Deliver course materials and educational content
  • -
  • Send transactional emails and notifications
  • -
- -

- 3.2 Payment Processing -

-
    -
  • Process payments securely through Razorpay
  • -
  • Manage settlements and refunds
  • -
  • Prevent fraudulent transactions
  • -
  • Generate invoices and receipts
  • -
- -

- 3.3 Platform Improvement -

-
    -
  • Analyze platform usage and performance
  • -
  • Improve user experience and features
  • -
  • Develop new services and functionalities
  • -
  • Conduct research and analytics
  • -
- -

- 3.4 Communication -

-
    -
  • Send important updates about your bookings
  • -
  • Respond to your inquiries and support requests
  • -
  • Send marketing communications (with your consent)
  • -
  • Notify you about platform changes and new features
  • -
- - - -

- 4. Information Sharing and Disclosure -

-

- We do not sell your personal information. We may share your - information in the following circumstances: -

- -

- 4.1 With Other Users -

-
    -
  • Your profile information is visible to other users
  • -
  • Consultants can see student booking information
  • -
  • Students can see consultant profiles and availability
  • -
  • Reviews and ratings are publicly visible
  • -
- -

- 4.2 With Service Providers -

-

- We share information with trusted third-party service providers: -

-
    -
  • - Razorpay: Payment processing and transaction - management -
  • -
  • - GetStream: Video conferencing and real-time - communication -
  • -
  • - Cloud Storage Providers: Secure data storage - and backup -
  • -
  • - Email Service Providers: Transactional and - marketing emails -
  • -
  • - Analytics Providers: Platform usage analysis - and improvement -
  • -
- -

- 4.3 Legal Requirements -

-

We may disclose your information if required by law or to:

-
    -
  • Comply with legal obligations or court orders
  • -
  • Protect our rights, property, or safety
  • -
  • Prevent fraud or security threats
  • -
  • Enforce our Terms & Conditions
  • -
- -

- 4.4 Business Transfers -

-

- In the event of a merger, acquisition, or sale of assets, your - information may be transferred to the acquiring entity. We will - notify you of any such change and any choices you may have. -

- - - -

- 5. Data Security -

-

- We implement robust security measures to protect your personal - information: -

-
    -
  • - Encryption: All sensitive data is encrypted - in transit and at rest -
  • -
  • - Secure Payments: Payment information is - processed through PCI-DSS compliant Razorpay -
  • -
  • - Access Controls: Limited access to personal - data by authorized personnel only -
  • -
  • - Regular Audits: Security assessments and - vulnerability testing -
  • -
  • - Secure Infrastructure: Hosting on secure - cloud platforms with backups -
  • -
-

- While we strive to protect your personal information, no method - of transmission over the internet or electronic storage is 100% - secure. We cannot guarantee absolute security. -

- - - -

- 6. Cookies and Tracking Technologies -

-

- We use cookies and similar tracking technologies to enhance your - experience: -

- -

- 6.1 Types of Cookies -

-
    -
  • - Essential Cookies: Required for the platform - to function properly -
  • -
  • - Functional Cookies: Remember your preferences - and settings -
  • -
  • - Analytics Cookies: Help us understand how you - use our platform -
  • -
  • - Marketing Cookies: Track marketing campaign - effectiveness -
  • -
- -

- 6.2 Cookie Management -

-

- You can control cookies through your browser settings. However, - disabling certain cookies may affect the functionality of our - platform. Most browsers allow you to refuse cookies or delete - existing cookies. -

- - - -

- 7. Your Rights and Choices -

-

- You have the following rights regarding your personal - information: -

- -

- 7.1 Access and Correction -

-
    -
  • - Access your personal information through your account settings -
  • -
  • Update or correct inaccurate information
  • -
  • Request a copy of your data
  • -
- -

- 7.2 Data Deletion -

-
    -
  • Request deletion of your account and associated data
  • -
  • - Note: Some information may be retained for legal or legitimate - business purposes -
  • -
  • - Backup copies may persist for a limited time after deletion -
  • -
- -

- 7.3 Marketing Communications -

-
    -
  • - Opt-out of marketing emails by clicking "unsubscribe" in any - email -
  • -
  • - Manage notification preferences in your account settings -
  • -
  • - Note: You will still receive essential transactional emails -
  • -
- -

- 7.4 Data Portability -

-
    -
  • Request your data in a machine-readable format
  • -
  • - Transfer your data to another service (where technically - feasible) -
  • -
- - - -

- 8. Children's Privacy -

-

- Our services are not intended for children under the age of 13. - We do not knowingly collect personal information from children - under 13. If you are a parent or guardian and believe your child - has provided us with personal information, please contact us - immediately, and we will take steps to delete such information. -

-

- Users between the ages of 13 and 18 must have parental or - guardian consent to use our services. -

- - - -

- 9. International Data Transfers -

-

- Your information may be transferred to and processed in - countries other than your country of residence. These countries - may have different data protection laws. We ensure that - appropriate safeguards are in place to protect your information - in accordance with this Privacy Policy. -

- - - -

- 10. Data Retention -

-

- We retain your personal information for as long as necessary to: -

-
    -
  • Provide our services to you
  • -
  • Comply with legal obligations
  • -
  • Resolve disputes and enforce our agreements
  • -
  • - Maintain business records for tax and accounting purposes -
  • -
-

- When you delete your account, we will delete or anonymize your - personal information within a reasonable timeframe, except where - retention is required by law or for legitimate business - purposes. -

- - - -

- 11. Third-Party Links -

-

- Our platform may contain links to third-party websites or - services. We are not responsible for the privacy practices of - these external sites. We encourage you to read the privacy - policies of any third-party sites you visit. -

- - - -

- 12. Changes to This Privacy Policy -

-

- We may update this Privacy Policy from time to time to reflect - changes in our practices, technology, legal requirements, or - other factors. We will notify you of any material changes by: -

-
    -
  • Posting the updated policy on this page
  • -
  • Updating the "Last Updated" date at the top
  • -
  • - Sending you an email notification (for significant changes) -
  • -
  • Displaying a prominent notice on our platform
  • -
-

- Your continued use of our services after any changes indicates - your acceptance of the updated Privacy Policy. -

- - - -

- 13. Contact Us -

-

- If you have any questions, concerns, or requests regarding this - Privacy Policy or our data practices, please contact us: -

-
-

- Company Name: {COMPANY_INFO.name} + {/* Content */} +

+ {/* 1. Introduction */} + + + 1. Introduction + + +

+ Welcome to Familiarise, operated by {COMPANY_INFO.name}{" "} + ("we," "our," or "us"). + Familiarise is a platform that connects Students with + experienced Consultants for personalised guidance and learning. + We are committed to protecting your privacy and handling your + personal data with care and transparency.

-

- Address: {COMPANY_INFO.address} +

+ This Privacy Policy explains how we collect, use, disclose, and + safeguard your information when you use the Familiarise + platform, including our website and related services. This + policy is drafted in compliance with the Digital Personal Data + Protection Act, 2023 (DPDP Act) and other applicable Indian + laws. +

+

+ By accessing or using Familiarise, you consent to the + collection and use of your information as described in this + Privacy Policy. If you do not agree with the terms of this + policy, please do not access or use our platform. +

+
+
+ + {/* 2. Information We Collect */} + + + + 2. Information We Collect + + + +
+

+ Account Information +

+

+ When you create an account on Familiarise, we collect + information that you provide directly, including: +

+
    +
  • Full name and display name
  • +
  • Email address
  • +
  • Phone number
  • +
  • Profile picture
  • +
  • + Professional qualifications and expertise (for + Consultants) +
  • +
  • + Educational background and learning interests (for + Students) +
  • +
  • Bio and profile description
  • +
+
+ + + +
+

+ Service Usage Information +

+

+ When you use Familiarise, we collect information related to + your activities on the platform, including: +

+
    +
  • + Session bookings, scheduling details, and history +
  • +
  • + Messages and communications between Students and + Consultants +
  • +
  • Reviews, ratings, and feedback
  • +
  • + Search queries and browsing activity within the platform +
  • +
  • + Content you create, upload, or share on the platform +
  • +
+
+ + + +
+

+ Automatically Collected Information +

+

+ When you access Familiarise, we automatically collect certain + technical information, including: +

+
    +
  • + Device type, operating system, and browser information +
  • +
  • IP address and approximate location
  • +
  • + Usage patterns, page views, and feature interactions +
  • +
  • Referral URLs and navigation paths
  • +
  • Cookies and similar tracking technologies
  • +
+
+ + + +
+

+ Payment Information +

+

+ Payment processing on Familiarise is handled by Razorpay, + our third-party payment processor. We do not directly store + your complete payment card details. Razorpay collects and + processes your payment information in accordance with PCI DSS + standards. We receive limited transaction information such as + transaction IDs, payment status, and amounts for our records. +

+
+
+
+ + {/* 3. How We Use Your Information */} + + + + 3. How We Use Your Information + + + +
+

+ Service Delivery +

+
    +
  • + Creating and managing your Familiarise account +
  • +
  • + Facilitating connections between Students and Consultants +
  • +
  • Processing session bookings and scheduling
  • +
  • + Enabling communication features on the platform +
  • +
  • Processing payments and managing transactions
  • +
  • + Providing customer support and resolving issues +
  • +
+
+ + + +
+

+ Platform Improvement +

+
    +
  • + Analysing usage patterns to improve features and user + experience +
  • +
  • Developing new features and services
  • +
  • Conducting research and analytics
  • +
  • Testing and debugging platform functionality
  • +
  • + Personalising your experience on Familiarise +
  • +
+
+ + + +
+

Communication

+
    +
  • + Sending service-related notifications and updates +
  • +
  • Responding to your inquiries and requests
  • +
  • + Sending promotional communications (with your consent) +
  • +
  • + Delivering important policy and platform updates +
  • +
+
+ + + +
+

+ Legal and Safety +

+
    +
  • + Complying with applicable laws and regulations +
  • +
  • + Enforcing our Terms of Service and other policies +
  • +
  • + Detecting, preventing, and addressing fraud or security + issues +
  • +
  • + Protecting the rights, property, and safety of our users + and the public +
  • +
+
+
+
+ + {/* 4. Information Sharing */} + + + + 4. Information Sharing + + + +

+ We do not sell your personal data. We may share your + information in the following circumstances: +

+ +
+

+ With Other Users +

+

+ When you use Familiarise, certain information is shared + between Students and Consultants to facilitate the service. + For example, when a Student books a session with a + Consultant, relevant profile information, booking details, + and communications are shared between the parties. + Consultants can view Student profiles and session details, + and Students can view Consultant profiles, ratings, and + qualifications. +

+
+ + + +
+

+ With Service Providers +

+

+ We work with trusted third-party service providers who assist + us in operating Familiarise. These providers have access to + your information only as necessary to perform their services + and are obligated to protect your data. Our key service + providers include: +

+
    +
  • + Razorpay — Payment processing and + transaction management +
  • +
  • + GetStream — Real-time messaging and + communication features +
  • +
  • + Hosting and infrastructure providers{" "} + — Cloud storage and computing services +
  • +
  • + Analytics providers — Platform usage + analytics and performance monitoring +
  • +
+
+ + + +
+

+ For Legal Requirements +

+

+ We may disclose your information if required to do so by law + or in response to valid legal requests by public authorities, + including to meet national security or law enforcement + requirements, comply with a court order or legal process, + protect and defend our rights or property, or prevent or + investigate possible wrongdoing in connection with the + platform. +

+
+ + + +
+

+ Business Transfers +

+

+ In the event of a merger, acquisition, reorganisation, or + sale of all or a portion of our assets, your personal data + may be transferred as part of that transaction. We will + notify you via email and/or a prominent notice on our + platform of any change in ownership or use of your personal + data, as well as any choices you may have regarding your + data. +

+
+
+
+ + {/* 5. Data Security */} + + + 5. Data Security + + +

+ We take the security of your personal data seriously and + implement appropriate technical and organisational measures to + protect it. Our security practices include:

-

- Email:{" "} +

    +
  • + Encryption — Data is encrypted in + transit using TLS/SSL and at rest using industry-standard + encryption protocols +
  • +
  • + PCI Compliance — Payment processing + through Razorpay adheres to PCI DSS standards to ensure the + security of financial data +
  • +
  • + Access Controls — Strict access + controls and authentication mechanisms limit access to + personal data to authorised personnel only +
  • +
  • + Regular Audits — We conduct regular + security assessments and audits to identify and address + potential vulnerabilities +
  • +
  • + Incident Response — We maintain an + incident response plan to promptly address any data security + breaches, including notification to affected users and + relevant authorities within the timeframes required by law +
  • +
+

+ While we strive to protect your personal data, no method of + transmission over the Internet or electronic storage is + completely secure. We cannot guarantee absolute security, but + we are committed to implementing and maintaining reasonable + safeguards. +

+
+
+ + {/* 6. Cookies and Tracking */} + + + + 6. Cookies and Tracking + + + +

+ Familiarise uses cookies and similar tracking technologies to + enhance your experience on our platform. The types of cookies + we use include: +

+ +
+

+ Essential Cookies +

+

+ These cookies are necessary for the platform to function + properly. They enable core features such as authentication, + session management, and security. You cannot opt out of + essential cookies as they are required for the platform to + operate. +

+
+ + + +
+

+ Functional Cookies +

+

+ These cookies remember your preferences and settings to + provide a more personalised experience. They may include + language preferences, display settings, and other + customisation options. +

+
+ + + +
+

+ Analytics Cookies +

+

+ These cookies help us understand how users interact with + Familiarise by collecting and reporting usage information + anonymously. This data helps us improve the platform and + optimise the user experience. +

+
+ +

+ You can manage your cookie preferences through your browser + settings. Please note that disabling certain cookies may affect + the functionality of the platform. +

+
+
+ + {/* 7. Your Rights */} + + + 7. Your Rights + + +

+ As a user of Familiarise, you have the following rights + regarding your personal data: +

+ +
+

+ Access and Correction +

+

+ You have the right to access the personal data we hold about + you and request corrections if any information is inaccurate + or incomplete. You can update most of your information + directly through your Familiarise account settings. +

+
+ + + +
+

+ Data Deletion +

+

+ You may request the deletion of your personal data by + contacting us. We will process your request in accordance + with applicable laws, subject to any legal obligations that + require us to retain certain information. +

+
+ + + +
+

+ Data Portability +

+

+ You have the right to request a copy of your personal data in + a structured, commonly used, and machine-readable format. You + may also request that we transfer your data directly to + another service provider where technically feasible. +

+
+ + + +
+

+ Communication Preferences +

+

+ You can opt out of promotional communications at any time by + using the unsubscribe link in our emails or adjusting your + notification preferences in your account settings. Please + note that you may still receive essential service-related + communications. +

+
+ + + +
+

+ Grievance Redressal +

+

+ If you have any complaints or concerns about how your + personal data is being processed, you may contact our + Grievance Officer (details provided in the Contact Us section + below). If you are not satisfied with our response, you have + the right to lodge a complaint with the Data Protection Board + of India established under the DPDP Act, 2023. +

+
+ +

+ To exercise any of these rights, please contact us at{" "} {COMPANY_INFO.email} + . +

+
+
+ + {/* 8. Compliance with Indian Law */} + + + + 8. Compliance with Indian Law + + + +

+ Familiarise is operated by {COMPANY_INFO.name}, a company + registered in India. We are committed to complying with all + applicable Indian data protection laws and regulations, + including:

-

- Contact Form:{" "} + +

+

+ Digital Personal Data Protection Act, 2023 (DPDP Act) +

+

+ We process personal data in accordance with the DPDP Act, + 2023. This includes ensuring that all data processing is + carried out for lawful purposes with the consent of the Data + Principal (you), and that appropriate security safeguards are + in place to protect your personal data. +

+
+ + + +
+

+ Consent-Based Processing +

+

+ We collect and process your personal data based on your + informed consent. You provide consent when you create an + account, use our services, or interact with our platform. You + may withdraw your consent at any time by contacting us, + though this may affect your ability to use certain features + of Familiarise. +

+
+ + + +
+

+ 72-Hour Breach Notification +

+

+ In the event of a personal data breach that is likely to + cause harm to Data Principals, we will notify the Data + Protection Board of India and affected users within 72 hours + of becoming aware of the breach, as required by the DPDP Act. +

+
+ + + +
+

+ Data Principal Rights +

+

+ Under the DPDP Act, you (as a Data Principal) have the right + to access your personal data, request correction and erasure, + seek grievance redressal, and nominate another person to + exercise your rights in the event of your death or + incapacity. +

+
+ + + +
+

+ Grievance Officer +

+

+ In accordance with the DPDP Act, 2023, we have appointed a + Grievance Officer to address your concerns regarding the + processing of your personal data. The Grievance Officer can + be reached at{" "} + + {COMPANY_INFO.email} + + . We will acknowledge your grievance within 24 hours and + endeavour to resolve it within 30 days. +

+
+
+
+ + {/* 9. Data Retention */} + + + 9. Data Retention + + +

+ We retain your personal data only for as long as necessary to + fulfil the purposes for which it was collected, including to + satisfy any legal, accounting, or reporting requirements. +

+

+ When determining the appropriate retention period, we consider + the amount, nature, and sensitivity of the personal data, the + potential risk of harm from unauthorised use or disclosure, the + purposes for which we process the data, and applicable legal + requirements. +

+

+ When your personal data is no longer needed, we will securely + delete or anonymise it. If deletion is not immediately possible + (for example, because your data is stored in backup archives), + we will securely store your data and isolate it from further + processing until deletion is possible. +

+
+
+ + {/* 10. Children's Privacy */} + + + + 10. Children's Privacy + + + +

+ Familiarise is not intended for use by children under the age + of 13. We do not knowingly collect personal data from children + under 13. If we become aware that we have collected personal + data from a child under 13, we will take steps to delete that + information promptly. +

+

+ If you are a parent or guardian and believe that your child has + provided us with personal data without your consent, please + contact us at{" "} - Contact Us - + {COMPANY_INFO.email} + {" "} + and we will take appropriate action.

-
- - - -
-

- Your Privacy Matters -

-

- We are committed to protecting your privacy and handling your - data responsibly. If you have any concerns about how your - information is being used, please don't hesitate to reach out - to us. We're here to help and ensure your experience on - Familiarise is safe and secure. + + + + {/* 11. Changes to This Privacy Policy */} + + + + 11. Changes to This Privacy Policy + + + +

+ We may update this Privacy Policy from time to time to reflect + changes in our practices, technology, legal requirements, or + other factors. When we make material changes, we will notify + you by posting the updated policy on this page with a revised + "Last updated" date and, where appropriate, provide + additional notice such as an email notification.

-
- - +

+ We encourage you to review this Privacy Policy periodically to + stay informed about how we are protecting your data. Your + continued use of Familiarise after any changes to this policy + constitutes your acceptance of the updated terms. +

+ + + + {/* 12. Contact Us */} + + + 12. Contact Us + + +

+ If you have any questions, concerns, or requests regarding this + Privacy Policy or our data practices, please contact us: +

+
+

+ Company: {COMPANY_INFO.name} +

+

+ Email:{" "} + + {COMPANY_INFO.email} + +

+

+ Support Email:{" "} + + {COMPANY_INFO.supportEmail} + +

+

+ Contact Form:{" "} + + Visit our Contact Page + +

+
+
+
+ + {/* Your Privacy Matters Callout */} + + +
+ +

Your Privacy Matters

+

+ At Familiarise, we believe that trust is the foundation of + our platform. We are committed to being transparent about our + data practices and giving you control over your personal + information. If you ever have questions or concerns, do not + hesitate to reach out to us. +

+ +
+
+
+
-
+
); } diff --git a/app/(pages)/refund/page.tsx b/app/(pages)/refund/page.tsx index b780bdd91..f2e177808 100644 --- a/app/(pages)/refund/page.tsx +++ b/app/(pages)/refund/page.tsx @@ -13,718 +13,500 @@ import { export default function RefundPolicyPage() { return ( -
-
+
+
{/* Hero Section */} -
-
- +
+
+
-

+

{PAGE_META.refund.title}

-

+

{PAGE_META.refund.description}

-
+
- - - Cancellation & Refund Policy + + + Cancellation & Refund Policy -

+

Last Updated: {POLICY_DATES.refundLastUpdated}

- -

+ + {/* Section 1: Introduction */} +

1. Introduction

-

- At Familiarise ("{COMPANY_INFO.name}"), we understand that - circumstances change and plans may need to be adjusted. This - Cancellation & Refund Policy outlines the terms and conditions - for cancellations and refunds for all services offered on our - platform. +

+ This Cancellation & Refund Policy applies to all services + offered through the Familiarise platform, including one-on-one + consultations, classes, webinars, subscription plans, and any + other paid services available on the platform. Familiarise is + operated by {COMPANY_INFO.name}.

-

- By booking any service on our platform, you agree to this - policy. Please read it carefully before making a booking or - purchase. +

+ By purchasing any service on Familiarise, you acknowledge that + you have read, understood, and agree to the terms outlined in + this policy. We encourage you to review this policy carefully + before making any purchase.

- + -

- 2. General Cancellation Policy + {/* Section 2: Cancellation Policy for Familiarise Services */} +

+ 2. Cancellation Policy for Familiarise Services

-

- Our cancellation and refund policies vary depending on the type - of service you have booked. We strive to be fair to both - students and consultants while maintaining the integrity of - scheduled services. -

-
-

- Important: All cancellation requests must be - submitted through the platform. Cancellations made outside the - platform or via direct communication with the consultant will - not be eligible for refunds. -

-
- - - -

- 3. Service-Specific Cancellation Policies -

- -

- 3.1 One-on-One Consultations -

-
-
-

- Cancellation by Student: -

-
    -
  • - More than 24 hours before: Full refund - (100% of booking amount) -
  • -
  • - 12-24 hours before: Partial refund (50% - of booking amount) -
  • -
  • - Less than 12 hours before: No refund -
  • -
  • - No-show: No refund -
  • -
-
-
-

- Cancellation by Consultant: -

-
    -
  • Full refund (100%) regardless of timing
  • -
  • - Platform may offer a bonus credit as compensation for - inconvenience -
  • -
-
-
-

- Rescheduling: -

-
    -
  • - Students can request one free reschedule if done more than - 24 hours in advance -
  • -
  • - Consultants must accommodate reasonable reschedule - requests -
  • -
-
-
- -

- 3.2 Live Interactive Classes -

-
-
-

- Before First Session Starts: -

-
    -
  • - More than 7 days before start date: Full - refund (100%) -
  • -
  • - 3-7 days before start date: Partial - refund (75%) -
  • -
  • - Less than 3 days before start date:{" "} - Partial refund (50%) -
  • -
-
-
-

- After Course Has Started: -

-
    -
  • - - Within first week (after attending max 1 session): - {" "} - Pro-rated refund for remaining sessions minus 20% - administration fee -
  • -
  • - After first week: No refund available -
  • -
  • - Missed sessions due to student absence are not refundable -
  • -
-
-
-

- Course Cancellation by Consultant: -

-
    -
  • - Full refund (100%) if course is canceled before it starts -
  • -
  • - Pro-rated refund for remaining sessions if canceled - mid-course -
  • -
-
-
- -

- 3.3 Webinars & Workshops -

-
-
-

- Cancellation by Student: -

-
    -
  • - More than 48 hours before event: Full - refund (100%) -
  • -
  • - 24-48 hours before event: Partial refund - (50%) -
  • -
  • - Less than 24 hours before event: No - refund -
  • -
  • - No-show: No refund -
  • -
-
-
-

- Event Cancellation by Organizer: -

-
    -
  • Full refund (100%) regardless of timing
  • -
  • - Platform may offer priority booking for future events -
  • -
-
-
- -

- 3.4 Subscription Plans -

-
-
-

- Cancellation by Student: -

-
    -
  • Subscriptions can be canceled at any time
  • -
  • No refund for the current billing period
  • -
  • Access continues until the end of the paid period
  • -
  • - Pro-rated refunds available only in case of consultant - cancellation or service failure -
  • -
-
-
-

- Mid-Subscription Issues: -

-
    -
  • - If consultant discontinues service mid-subscription, - pro-rated refund for unused portion -
  • -
  • - If platform experiences prolonged downtime, pro-rated - refund or credit may be issued -
  • -
-
-
- - -

- 4. Refund Eligibility and Conditions -

- -

- 4.1 Eligible for Refund +

+ 2.1 One-on-One Consultations

-
    +
    • - Cancellations made within the allowed timeframe as per service - type + 24+ hours before session: Full refund
    • - Consultant cancels or fails to attend the scheduled session + 12–24 hours before session: 50% refund
    • - Technical issues on our platform prevent service delivery - (verified by our team) + Less than 12 hours before session: No refund
    • - Service quality does not match the description (subject to - review) + No-show by Student: No refund
    • -
    • Duplicate or erroneous charges
    • -
    - -

    - 4.2 Not Eligible for Refund -

    -
      -
    • Late cancellations outside the allowed timeframe
    • -
    • No-shows or missed sessions by students
    • -
    • - Technical issues on the student's side (internet, device, - etc.) -
    • -
    • Change of mind after attending sessions
    • -
    • - Dissatisfaction with service after consuming majority of - purchased sessions -
    • -
    • Platform commission fees (non-refundable)
    • -
    • Payment gateway charges (non-refundable)
    • -
    - - - -

    - 5. Refund Process -

    - -

    - 5.1 How to Request a Refund -

    -
      -
    1. Log in to your Familiarise account
    2. -
    3. Navigate to "My Bookings" or "My Subscriptions"
    4. -
    5. Select the booking you wish to cancel
    6. -
    7. Click "Request Cancellation" or "Request Refund"
    8. - Provide a reason for cancellation (optional but helpful) + No-show by Consultant: Full refund or free + reschedule at your choice
    9. -
    10. Submit your request
    11. -
    -

    - Alternatively, you can contact our support team at{" "} - - {COMPANY_INFO.email} - {" "} - with: -

    -
      -
    • Your booking ID or subscription ID
    • -
    • Reason for cancellation/refund request
    • -
    • Any supporting documentation (if applicable)
    -

    - 5.2 Refund Processing Time +

    + 2.2 Classes and Webinars

    -
      +
      • - Review Period: Refund requests are reviewed - within 2-3 business days -
      • -
      • - Approval Notification: You will receive an - email confirmation once approved + 48+ hours before event: Full refund
      • - Refund Initiation: Refunds are initiated - within 24-48 hours of approval + 24–48 hours before event: 50% refund
      • - Bank Processing Time: 5-7 business days for - the amount to reflect in your account + Less than 24 hours before event: No refund
      • - Payment Gateway Delays: Razorpay may take - additional time based on your bank's processing schedule + Event cancelled by organizer: Full refund
      -
      -

      - Note: The total time from refund request to - receiving funds in your account may take 7-14 business days - depending on your bank and payment method. -

      -
      -

      - 5.3 Refund Method +

      + 2.3 Subscription Plans

      -
        -
      • - Refunds are processed to the original payment method used for - the transaction -
      • +
        • - If the original payment method is unavailable, refunds may be - issued as platform credits + You may cancel your subscription at any time. Your access + will continue until the end of the current billing period.
        • - UPI payments are refunded to the UPI ID used for payment + No partial refunds are issued for unused subscription time + within a billing cycle.
        • -
        • Card payments are refunded to the original card
        • - Net banking and wallet payments are refunded to the source - account/wallet + First-time subscribers may request a full refund within 7 + days of purchase if the service was unsatisfactory and no + significant usage has occurred (7-day satisfaction guarantee).
        - + -

        - 6. Platform Commission and Fees + {/* Section 3: Platform Fees and Refund Scope */} +

        + 3. Platform Fees and Refund Scope

        -
          -
        • - The platform service fee is non-refundable in - all cases -
        • +

          + It is important to understand the breakdown of fees when you + make a purchase on Familiarise. Not all components of a + transaction are eligible for refund: +

          +
          • - Payment gateway charges (Razorpay fees) are{" "} - non-refundable + Platform Service Fee: The platform service + fee charged by Familiarise is generally non-refundable. This + fee covers the cost of maintaining the platform, facilitating + bookings, and providing customer support. However, in cases + where the service is not delivered due to a cancellation + initiated by the Consultant or a technical fault on our + platform, the full amount including the platform service fee + will be refunded.
          • - Only the consultant's service fee portion is eligible for - refunds + Payment Gateway Fees: Transaction processing + fees charged by our payment partner (Razorpay) are + non-refundable. These fees are deducted at the time of + payment and cannot be recovered.
          • - The displayed refund amount will be the amount you receive - after deducting non-refundable fees + Consultant's Service Fee: Only the + Consultant's service portion of the payment is eligible + for refund, subject to the cancellation terms outlined in + Section 2.
          -
          -

          - Example: If you paid ₹1,000 for a - consultation (₹850 consultant fee + ₹150 platform/gateway - fees), a full refund would return ₹850, not ₹1,000. +

          +

          + Example: If you paid Rs 1,000 for a + consultation (Rs 850 Consultant's service fee + Rs 150 + platform/gateway fees), a full refund would return Rs 850. + The Rs 150 covering platform service fees and payment gateway + charges is non-refundable.

          +

          + This applies to all refund scenarios described in this policy, + including cancellations within the eligible window, + Consultant-initiated cancellations, and other approved refund + requests. +

          - + -

          - 7. Partial Refunds + {/* Section 4: General Refund Eligibility */} +

          + 4. General Refund Eligibility

          -

          - Partial refunds may be issued in the following circumstances: -

          -
            + +

            + 4.1 Eligible for Refund +

            +
            • - Pro-rated refunds for multi-session courses canceled mid-way + Technical Issues: The platform was + inaccessible or malfunctioned, preventing you from accessing + or completing a paid service
            • - Late cancellations within specific timeframes (as outlined - above) + Duplicate Charges: You were charged multiple + times for the same service
            • - Subscription cancellations with remaining unused sessions + Unauthorized Charges: Charges were made + without your authorization (subject to verification)
            • - Service quality issues affecting only part of the booked - service + Service Not Delivered: The Consultant failed + to deliver the booked service as described
            • -
            -

            Partial refund amounts are calculated based on:

            -
            • - Number of sessions attended vs. total sessions purchased + Quality Issues: The service significantly + differed from its description on the platform (reviewed on a + case-by-case basis)
            • -
            • Cancellation timing relative to the service date
            • -
            • Administration fees for processing (where applicable)
            - - -

            - 8. Technical Issues and Service Failures -

            - -

            - 8.1 Platform Technical Issues +

            + 4.2 Not Eligible for Refund

            -

            - If our platform experiences technical difficulties that prevent - service delivery: -

            -
              -
            • Full refund or free rescheduling option
            • -
            • Compensation credit for significant inconvenience
            • +
              • - Issue must be reported immediately and verified by our - technical team + Change of mind after the applicable refund window has passed
              • -
              - -

              - 8.2 User-Side Technical Issues -

              -

              - If technical issues occur on the user's side (poor internet, - device problems, etc.): -

              -
                -
              • No refund is applicable
              • - Consultant may offer a partial make-up session (at their - discretion) + Failure to cancel a subscription before auto-renewal
              • - Users are responsible for ensuring their setup is compatible - before sessions + Violation of our Terms & Conditions leading to account + termination +
              • +
              • + Services that have already been consumed or completed +
              • +
              • + Downloaded or accessed digital content (recordings, + materials, etc.) +
              • +
              • + Dissatisfaction with outcomes — Familiarise does not + guarantee specific results from any consultation, class, or + other service
              - + -

              - 9. Emergency and Exceptional Circumstances + {/* Section 5: How to Request a Refund */} +

              + 5. How to Request a Refund

              -

              - We understand that emergencies happen. In cases of genuine - emergency situations: + +

              + 5.1 Refund Request Process +

              +

              + To request a refund, please email our support team at{" "} + + {COMPANY_INFO.supportEmail} + {" "} + with the following details:

              -
                -
              • Medical emergencies (documentation may be required)
              • -
              • Family emergencies
              • -
              • Natural disasters or force majeure events
              • +
                  +
                1. Your registered account email address
                2. +
                3. Transaction ID or Order ID
                4. +
                5. Platform name (Familiarise)
                6. +
                7. Reason for the refund request
                8. - Government-mandated restrictions affecting service delivery + Any supporting documentation (screenshots, error messages, + etc.)
                9. -
              -

              - Please contact our support team immediately with relevant - documentation. We will review such cases individually and may - make exceptions to the standard policy at our discretion. -

              - - + -

              - 10. Disputed Charges -

              -

              - If you believe you have been incorrectly charged or notice - unauthorized charges: -

              -
                +

                + 5.2 Processing Time +

                +
                • - Contact our support team immediately at{" "} - - {COMPANY_INFO.email} - + Review Period: Refund requests are reviewed + within 3–5 business days
                • - Provide details of the disputed charge with transaction ID + Processing Period: Approved refunds are + processed within 7–10 business days
                • -
                • Do not initiate a chargeback before contacting us
                • -
                • We will investigate and resolve within 7 business days
                • -
              -
              -

              - Important: Initiating a chargeback without - contacting us first may result in immediate suspension of your - account until the matter is resolved. +

            • + Payment Method: Refunds are credited to the + original payment method used at the time of purchase +
            • +
            • + Bank Processing: Your bank or payment + provider may take an additional 5–7 business days to + reflect the credit in your account +
            • +
            + +
            +

            + RBI Compliance Note: For failed transactions + where the amount was debited but the service was not + activated, refunds are initiated within T+5 business days in + compliance with Reserve Bank of India (RBI) guidelines. These + refunds are processed automatically through Razorpay and no + separate refund request is required. The refund will appear + on your statement within 5–10 business days depending + on your bank.

            - + -

            - 11. Consultant-Initiated Refunds + {/* Section 6: Cancellation of Services */} +

            + 6. Cancellation of Services

            -

            - Consultants have the discretion to issue refunds or offer - alternative compensation in the following situations: -

            -
              -
            • If they are unable to fulfill the service as described
            • -
            • If they need to cancel or reschedule multiple times
            • + +

              + 6.1 How to Cancel Subscriptions +

              +
                +
              1. Log in to your Familiarise account
              2. - If the student is not satisfied with the session quality + Go to Settings → Subscriptions
              3. -
            -

            - Consultant-initiated refunds follow the same processing timeline - and methods as standard refunds. +

          • Click "Cancel Subscription"
          • +
          • + Confirm your cancellation. You will receive a confirmation + email once the cancellation is processed +
          • + +

            + Your subscription benefits will remain active until the end of + the current billing period. Alternatively, you can contact our + support team at{" "} + + {COMPANY_INFO.supportEmail} + {" "} + and we will assist you with the cancellation.

            - - -

            - 12. Refund Tracking -

            -

            You can track the status of your refund request by:

            -
              +

              + 6.2 How to Cancel Booked Sessions +

              +
              1. - Checking the "My Bookings" section in your account dashboard + Go to your Dashboard → My Bookings
              2. -
              3. Viewing refund status updates via email notifications
              4. -
              5. Contacting support for detailed status information
              6. -
            -

            Refund statuses include:

            -
              +
            • Find the session you wish to cancel
            • - Pending Review: Your request is being - evaluated + Click "Cancel Booking" and confirm your + cancellation
            • - Approved: Refund has been approved and will - be processed + Your refund will be processed based on the cancellation + timelines outlined in Section 2
            • + + + + + {/* Section 7: Consultant-Initiated Cancellations */} +

              + 7. Consultant-Initiated Cancellations +

              +

              + If a Consultant cancels a scheduled session or event: +

              +
              • - Processing: Refund is being processed by - payment gateway + You will receive a full refund of the + service fee (subject to the fee structure described in + Section 3) or a free reschedule at your + choice
              • - Completed: Refund has been sent to your - account + Refunds for Consultant-initiated cancellations are + automatically processed within 48 hours. No action is + required from your end
              • - Rejected: Request does not meet refund - criteria (reason provided) + You will be notified via email about the cancellation and + your refund or reschedule options
              - + -

              - 13. Appeals and Disputes + {/* Section 8: Disputed Charges */} +

              + 8. Disputed Charges

              -

              - If your refund request is denied and you believe the decision - was incorrect: +

              + If you believe a charge on your account is incorrect or + unauthorized, please follow these steps:

              -
                +
                1. - You may appeal the decision within 7 days of the denial - notification + Contact our support team at{" "} + + {COMPANY_INFO.supportEmail} + {" "} + as soon as possible
                2. - Provide additional information or documentation supporting - your case + Provide the transaction ID, date of charge, and amount in + question
                3. - Our review team will re-evaluate and respond within 5 business - days + Our team will investigate and respond within 3–5 + business days
                4. -
                5. The decision after appeal is final
                - +
                +

                + Warning: Please do not initiate a chargeback + or dispute with your bank or payment provider before + contacting us directly. Filing a chargeback without first + attempting resolution through our support team may result in{" "} + + immediate suspension of your Familiarise account + {" "} + pending investigation. Chargebacks initiated without prior + communication may also delay the resolution process and could + affect your ability to use Familiarise services in the + future. We are committed to resolving disputes fairly and + promptly. +

                +
                + + -

                - 14. Changes to This Policy + {/* Section 9: Changes to This Policy */} +

                + 9. Changes to This Policy

                -

                - We may update this Cancellation & Refund Policy from time to - time. Any changes will be: -

                -
                  -
                • Posted on this page with an updated "Last Updated" date
                • -
                • Communicated via email to all active users
                • -
                • - Applied to bookings made after the effective date of the - change -
                • -
                -

                - Existing bookings will be governed by the policy in effect at - the time of booking. +

                + We may update this Cancellation & Refund Policy from time + to time. Changes will be posted on this page with an updated + "Last Updated" date. Existing purchases will be + honored under the terms that were in effect at the time of + purchase, unless you explicitly agree to the revised terms.

                - + -

                - 15. Contact Us + {/* Section 10: Contact Us */} +

                + 10. Contact Us

                -

                - If you have questions about our Cancellation & Refund Policy or - need assistance with a cancellation or refund request, please - contact us: +

                + If you have questions about cancellations, refunds, or any + billing-related matter, please reach out to us:

                -
                -

                - Company Name: {COMPANY_INFO.name} +

                +

                + Company: {COMPANY_INFO.name}

                -

                - Address: {COMPANY_INFO.address} -

                -

                - Email:{" "} +

                + Support Email:{" "} - {COMPANY_INFO.email} + {COMPANY_INFO.supportEmail}

                -

                - Support:{" "} +

                + Contact Form:{" "} - Contact Form + Submit a Request →

                -

                - Response Time: We aim to respond to all - inquiries within 24-48 hours +

                + Business Hours: Monday – Friday, 10:00 + AM – 6:00 PM IST

                - - -
                -

                - Fair Treatment for All -

                -

                - Our cancellation and refund policies are designed to be fair - to both students and consultants. We encourage clear - communication between all parties and are here to help - facilitate positive outcomes. If you have any concerns about a - booking or service, please reach out to us before requesting a - refund so we can explore all available options. + + + {/* Need Help? Callout */} +

                +

                Need Help?

                +

                + If you're unsure about your refund eligibility or need + assistance with a cancellation, our support team is here to + help. Reach out to us at{" "} + + {COMPANY_INFO.supportEmail} + {" "} + or use our{" "} + + contact form + + . We're committed to resolving your concerns as quickly + as possible.

                diff --git a/app/(pages)/terms/page.tsx b/app/(pages)/terms/page.tsx index b0452579a..ea8db5695 100644 --- a/app/(pages)/terms/page.tsx +++ b/app/(pages)/terms/page.tsx @@ -12,612 +12,949 @@ import { export default function TermsPage() { return ( -
                -
                +
                +
                {/* Hero Section */} -
                -
                - +
                +
                +
                -

                +

                {PAGE_META.terms.title}

                -

                +

                {PAGE_META.terms.description}

                -
                +
                - - Terms & Conditions -

                + + Terms & Conditions +

                Last Updated: {POLICY_DATES.termsLastUpdated}

                - -

                + + {/* Section 1: Agreement to Terms */} +

                1. Agreement to Terms

                -

                - Welcome to Familiarise ("{COMPANY_INFO.name}"). These Terms & - Conditions ("Terms") govern your access to and use of our - website, platform, and services. By accessing or using our - services, you agree to be bound by these Terms and our Privacy - Policy. +

                + By accessing, browsing, or using Familiarise (the + "Platform"), operated by {COMPANY_INFO.name}, you + acknowledge that you have read, understood, and agree to be + bound by these Terms and Conditions ("Terms"). If you + do not agree to all of these Terms, you must immediately + discontinue use of the Platform.

                -

                - If you do not agree to these Terms, you must not access or use - our services. We reserve the right to modify these Terms at any - time, and your continued use of the services after such - modifications constitutes your acceptance of the updated Terms. +

                + These Terms constitute a legally binding agreement between you + ("User," "you," or "your") and{" "} + {COMPANY_INFO.name} ("we," "us," or + "our"). By creating an account, making a purchase, or + otherwise using the Platform, you consent to the collection and + use of information as described in our{" "} + + Privacy Policy + + .

                - + -

                - 2. Service Description + {/* Section 2: Platform Description */} +

                + 2. Platform Description

                -

                - Familiarise is an online educational technology platform that - connects consultants, educators, and subject matter experts - ("Consultants") with students and learners ("Students"). Our - platform facilitates: +

                + Familiarise is an educational technology platform that + facilitates connections between independent consultants, + educators, and subject matter experts ("Consultants") + and students and learners ("Students"). As a + marketplace intermediary, Familiarise provides the technology + infrastructure, payment processing, scheduling tools, and + communication channels that enable Consultants and Students to + discover each other and transact. We do not provide educational + services directly. Consultants are independent professionals + who offer their services through our Platform. +

                +

                + The quality, accuracy, legality, and appropriateness of + Consultant services are the sole responsibility of the + Consultants who provide them. Through Familiarise, Consultants + may offer and Students may access the following types of + services:

                -
                  +
                  • - Live Interactive Classes: Group learning - sessions with scheduled appointments + 1-on-1 Consultations — Private, + personalized sessions between a Student and a Consultant, + covering topics such as mentorship, career guidance, skill + development, and professional advice
                  • - Webinars: Large-scale educational events and - workshops + Live Interactive Classes — Group + sessions led by a Consultant, allowing real-time interaction, + Q&A, and collaborative learning among participants
                  • - One-on-One Consultations: Personalized expert - guidance sessions + Webinars and Workshops — + Consultant-hosted events on specialized topics, available to a + broader audience for knowledge sharing and professional + development
                  • - Subscription Plans: Ongoing learning programs - with recurring sessions + Subscription-Based Learning — + Recurring access plans that provide Students with ongoing + sessions, content, and resources from their chosen Consultants
                  -

                  - Familiarise acts as a marketplace platform connecting - Consultants and Students. We are not a party to the educational - services provided by Consultants and do not guarantee the - quality, accuracy, or outcomes of such services. -

                  - + -

                  + {/* Section 3: User Accounts */} +

                  3. User Accounts

                  -

                  +

                  3.1 Registration

                  -

                  - To use certain features of our platform, you must create an - account by providing: -

                  -
                    -
                  • Accurate and complete registration information
                  • -
                  • A valid email address and phone number
                  • -
                  • A secure password
                  • -
                  -

                  - You are responsible for maintaining the confidentiality of your - account credentials and for all activities that occur under your - account. +

                  + To access certain features of the Platform, you must create an + account. During registration, you agree to:

                  +
                    +
                  • + Provide accurate, current, and complete information as + prompted by the registration form +
                  • +
                  • + Maintain and promptly update your account information to keep + it accurate and complete +
                  • +
                  • + Be at least 13 years of age to create an account; users under + 18 must have parental or guardian consent and may not access + certain services designated for adults only +
                  • +
                  • Maintain only one account per person
                  • +
                  -

                  - 3.2 Account Responsibilities +

                  + 3.2 Responsibilities

                  -

                  You agree to:

                  -
                    -
                  • Provide accurate, current, and complete information
                  • -
                  • Update your information to keep it accurate and current
                  • +

                    + You are solely responsible for safeguarding your account + credentials and for all activities that occur under your + account. You agree to: +

                    +
                    • - Notify us immediately of any unauthorized use of your account + Keep your login credentials strictly confidential and not + share them with any third party +
                    • +
                    • + Notify us immediately at{" "} + + {COMPANY_INFO.supportEmail} + {" "} + if you suspect any unauthorized access to or use of your + account +
                    • +
                    • + Accept responsibility for all actions taken through your + account, whether or not you authorized those actions +
                    • +
                    • + Log out of your account at the end of each session, + particularly when using shared or public devices
                    • -
                    • Not share your account with others
                    • -
                    • Not create multiple accounts for fraudulent purposes
                    -

                    - 3.3 Account Termination +

                    + 3.3 Termination

                    -

                    - We reserve the right to suspend or terminate your account if - you: -

                    -
                      -
                    • Violate these Terms & Conditions
                    • -
                    • Engage in fraudulent or illegal activities
                    • -
                    • Provide false or misleading information
                    • -
                    • Abuse or harass other users
                    • -
                    • Violate intellectual property rights
                    • -
                    +

                    + We reserve the right to suspend or permanently terminate any + account, at our sole discretion and without prior notice, if we + determine that the account holder has violated these Terms, + engaged in fraudulent or abusive activity, or poses a risk to + the safety or integrity of the Platform or other users. You + may also request deletion of your account at any time by + contacting us. Upon termination, your right to access the + Platform ceases immediately, though certain provisions of + these Terms (including limitation of liability, indemnification, + and dispute resolution) shall survive termination. +

                    - + -

                    - 4. Payment Terms + {/* Section 4: User Roles and Responsibilities */} +

                    + 4. User Roles and Responsibilities

                    -

                    - 4.1 Payment Processing +

                    + 4.1 Students

                    -

                    - All payments are processed securely through our payment partner, - Razorpay. By making a payment, you agree to Razorpay's terms and - conditions. We do not store your complete payment card - information on our servers. +

                    + As a Student on the Platform, you agree to the following + obligations:

                    - -

                    - 4.2 Pricing and Fees -

                    -
                      -
                    • Consultants set their own pricing for services
                    • +
                      • - All prices are displayed in INR (Indian Rupees) unless - otherwise specified + Punctuality: Attend all scheduled sessions, + classes, and webinars on time. Repeated no-shows may result + in account restrictions or forfeiture of session fees
                      • -
                      • The platform charges a commission on each transaction
                      • - Prices displayed to Students include the platform commission + Respectful Conduct: Treat all Consultants + and fellow Students with courtesy, professionalism, and + respect during all interactions on the Platform
                      • - Prices are subject to change at the Consultant's discretion + Content Protection: Do not copy, reproduce, + share, distribute, or commercially exploit any paid content, + session materials, recordings, or proprietary resources + without explicit written authorization from the content owner +
                      • +
                      • + Payment Obligations: Complete all payments + for booked sessions, subscriptions, and services in a timely + manner through the Platform's designated payment system +
                      • +
                      • + Cancellation Compliance: Follow the + applicable cancellation and rescheduling policies. Failure to + cancel within the specified timeframe may result in loss of + fees +
                      • +
                      • + No Unauthorized Recording: Do not record, + screenshot, or capture any session, class, or webinar + content without obtaining prior consent from the Consultant + and all other participants
                      -

                      - 4.3 Payment Authorization +

                      + 4.2 Consultants

                      -

                      - By providing payment information, you authorize us (through - Razorpay) to charge the specified amount for the services you - have selected. You represent that: +

                      + As a Consultant offering services through the Platform, you + agree to the following obligations:

                      -
                        +
                        • - You have the legal right to use the payment method provided + Accurate Credentials: Provide truthful, + verifiable information about your qualifications, experience, + certifications, and areas of expertise. Misrepresentation of + credentials is grounds for immediate termination
                        • -
                        • The payment information is accurate and current
                        • - You will notify us of any changes to your payment information + Professional Delivery: Deliver all sessions + and services in a professional, prepared, and timely manner. + Maintain a standard of quality consistent with the + expectations set in your profile and listing descriptions +
                        • +
                        • + Student Privacy: Do not share, disclose, or + misuse any Student personal information, session details, or + private communications outside the scope of the service + engagement +
                        • +
                        • + Pricing Compliance: Comply with all platform + policies regarding pricing, fee structures, and promotional + offers. Do not engage in deceptive pricing practices
                        • -
                        - -

                        - 4.4 Currency and Taxes -

                        -
                          -
                        • All transactions are processed in Indian Rupees (INR)
                        • - Prices may or may not include applicable taxes (GST, etc.) + Professional Conduct: Maintain appropriate + professional boundaries and conduct during all interactions + with Students, including refraining from discriminatory, + harassing, or inappropriate behaviour
                        • - You are responsible for any taxes applicable in your - jurisdiction + No Off-Platform Solicitation: Do not + solicit, encourage, or facilitate any Student to conduct + transactions, payments, or communications outside the + Platform in order to circumvent platform fees or policies
                        -

                        - 4.5 Failed Payments +

                        + 4.3 Content Contributors

                        -

                        - If a payment fails or is declined, we reserve the right to - cancel your booking. You will not have access to the service - until successful payment is received. +

                        + If you upload, publish, or share any content on the Platform + (including but not limited to notes, courses, materials, + articles, images, or videos), you agree to:

                        +
                          +
                        • + Ownership: Only upload content that you have + created yourself or for which you hold all necessary rights, + licences, and permissions to distribute +
                        • +
                        • + No Infringing Material: Do not upload any + content that infringes upon the copyrights, trademarks, + patents, trade secrets, or other intellectual property rights + of any third party +
                        • +
                        • + Appropriate Content: Do not upload content + that is offensive, defamatory, obscene, threatening, hateful, + or otherwise inappropriate or in violation of applicable law +
                        • +
                        • + Licence Grant: By uploading content, you + grant {COMPANY_INFO.name} a non-exclusive, worldwide, + royalty-free, sublicensable licence to use, reproduce, + display, distribute, and make available your content as + necessary to operate, promote, and improve the Platform. + This licence does not transfer ownership of your content to + us +
                        • +
                        - + -

                        - 5. Consultant Obligations + {/* Section 5: Independent Contractor Relationship */} +

                        + 5. Independent Contractor Relationship

                        - -

                        - 5.1 Service Delivery -

                        -

                        Consultants agree to:

                        -
                          +

                          + Consultants using the Platform are independent contractors, not + employees, agents, or partners of {COMPANY_INFO.name}. The + relationship between {COMPANY_INFO.name} and Consultants is + strictly that of an independent marketplace operator and an + independent service provider. The Platform does not: +

                          +
                            +
                          • + Control how Consultants deliver their services, including the + methods, techniques, or curriculum used during sessions +
                          • +
                          • + Set Consultants' working hours, schedules, or require + minimum availability on the Platform +
                          • - Provide accurate information about their expertise and - qualifications + Provide employment benefits, insurance, workers' + compensation, retirement plans, or any other employee + protections
                          • -
                          • Deliver services as described and scheduled
                          • -
                          • Maintain professional conduct at all times
                          • -
                          • Respond to Student inquiries in a timely manner
                          • - Honor confirmed bookings or provide adequate notice for - cancellations + Require exclusivity — Consultants are free to offer + their services on other platforms or independently
                          • -
                          • Provide course materials and resources as promised
                          +

                          + Consultants are solely responsible for their own business + expenses, equipment, professional licensing, certifications, + insurance (if applicable), and compliance with all applicable + laws and regulations in their jurisdiction. +

                          +

                          + For detailed terms governing the relationship between{" "} + {COMPANY_INFO.name} and Consultants, please refer to our{" "} + + Contractor Agreement + + . +

                          -

                          - 5.2 Content Ownership + + + {/* Section 6: Payment Terms */} +

                          + 6. Payment Terms +

                          + +

                          + 6.1 Pricing and Currency

                          -

                          - Consultants retain ownership of their original educational - content. However, by uploading content to our platform, you - grant us a non-exclusive license to use, display, and distribute - the content as necessary to provide our services. +

                          + All prices on the Platform are displayed in Indian Rupees + (INR). Consultants set their own pricing for sessions, + consultations, classes, and subscription plans based on their + expertise and market conditions. The platform charges a service + fee on each transaction, as displayed at the time of booking. + There are no hidden fees. The total amount shown during + checkout is the final amount payable by the Student.

                          -

                          - 5.3 Prohibited Content +

                          + 6.2 Payment Processing

                          -

                          Consultants must not upload or share content that:

                          -
                            -
                          • Infringes on intellectual property rights
                          • -
                          • Contains illegal, harmful, or offensive material
                          • -
                          • Promotes violence, discrimination, or hate speech
                          • -
                          • Contains viruses, malware, or other harmful code
                          • -
                          • Violates privacy or data protection laws
                          • +

                            + All payments on the Platform are processed securely through + our payment partner, Razorpay. We accept the following payment + methods: +

                            +
                              +
                            • Credit cards (Visa, Mastercard, and others supported by Razorpay)
                            • +
                            • Debit cards
                            • +
                            • UPI (Unified Payments Interface)
                            • +
                            • Net banking
                            +

                            + By making a payment, you authorize {COMPANY_INFO.name} and + Razorpay to charge the applicable amount to your selected + payment method. Failed or declined payments may result in + service interruption or cancellation of your booking. We do + not store your complete payment credentials on our servers; + all sensitive payment data is handled directly by Razorpay in + compliance with PCI-DSS standards. +

                            -

                            - 5.4 Payment to Consultants +

                            + 6.3 Consultant Payouts

                            -

                            - Consultants will receive payment for completed services - according to our settlement schedule, after deduction of the - platform commission. Payments are subject to successful service - delivery and compliance with these Terms. +

                            + Consultants receive payouts for their services after successful + session completion and confirmation. The platform's + service fee is deducted from the gross session amount before + the payout is disbursed to the Consultant. Payouts are + processed in accordance with the settlement schedule outlined + in the{" "} + + Contractor Agreement + + . {COMPANY_INFO.name} reserves the right to withhold payouts + in cases of suspected fraud, policy violations, or pending + dispute resolution.

                            - - -

                            - 6. Student Obligations -

                            +

                            + 6.4 Tax Responsibilities +

                            +

                            + Consultants are responsible for all applicable taxes including + GST (if applicable based on turnover), income tax, and any + other taxes required by law. The platform does not collect or + remit taxes on behalf of Consultants. Consultants should + consult their own tax advisors to understand their obligations + and ensure compliance with all applicable tax regulations in + their jurisdiction. +

                            -

                            - 6.1 Booking and Attendance +

                            + 6.5 Cancellations and Refunds

                            -

                            Students agree to:

                            -
                              -
                            • Make bookings in good faith with intent to attend
                            • -
                            • Attend scheduled sessions on time
                            • +

                              + Cancellations and refund eligibility are governed by our + dedicated{" "} + + Cancellation & Refund Policy + + . By using the Platform, you agree to the terms outlined in + that policy regarding cancellation windows, refund timelines, + and non-refundable services. We encourage all users to review + the Cancellation & Refund Policy before making any bookings. +

                              + + + + {/* Section 7: Non-Circumvention */} +

                              + 7. Non-Circumvention +

                              +

                              + All transactions for services discovered through or facilitated + by the Platform must be conducted through the Platform's + payment system. Attempting to circumvent the Platform to avoid + service fees, including soliciting or accepting off-platform + payments, is a violation of these Terms and may result in + account suspension or termination. +

                              +

                              + This non-circumvention obligation applies to both Consultants + and Students. Specifically, you agree not to: +

                              +
                              • - Provide timely notice if unable to attend (as per cancellation - policy) + Share personal contact information (phone numbers, email + addresses, social media handles, or payment details) for the + purpose of conducting transactions outside the Platform
                              • -
                              • Pay the agreed amount for services
                              • - Respect Consultants' intellectual property and teaching - materials + Use the Platform to identify or connect with Consultants or + Students and then complete the transaction off-platform
                              • -
                              - -

                              - 6.2 Professional Conduct -

                              -

                              Students must:

                              -
                                -
                              • Maintain respectful and professional behavior
                              • -
                              • Not record sessions without explicit permission
                              • -
                              • Not share course materials without authorization
                              • -
                              • Not engage in harassment, abuse, or discrimination
                              • -
                              • Follow the Consultant's guidelines and instructions
                              • -
                              - -

                              - 6.3 Prohibited Activities -

                              -

                              Students must not:

                              -
                                -
                              • Use the platform for any illegal purposes
                              • -
                              • Attempt to circumvent payment systems
                              • -
                              • Share account credentials with others
                              • -
                              • Submit fraudulent payment information
                              • - Engage in activities that disrupt the platform or other users + Encourage, request, or agree to any arrangement that bypasses + the Platform's payment processing to avoid service fees
                              +

                              + Violations of this section may result in immediate account + suspension or termination, forfeiture of pending payouts, and + pursuit of any legal remedies available to{" "} + {COMPANY_INFO.name}. +

                              - + -

                              - 7. Intellectual Property Rights + {/* Section 8: Intellectual Property */} +

                              + 8. Intellectual Property

                              -

                              - 7.1 Platform Rights +

                              + 8.1 Platform Intellectual Property

                              -

                              - The Familiarise platform, including its design, features, code, - logos, and trademarks, is owned by {COMPANY_INFO.name} and - protected by intellectual property laws. You may not copy, - modify, distribute, or create derivative works without our - express written permission. +

                              + The Platform, including all software, code, design, text, + graphics, logos, trademarks, service marks, user interfaces, + visual elements, and other proprietary materials, are owned by + or licensed to {COMPANY_INFO.name} and are protected by + applicable intellectual property laws, including copyright, + trademark, and trade secret laws. You may not copy, modify, + reproduce, distribute, create derivative works from, publicly + display, reverse engineer, or otherwise exploit any part of the + Platform without our prior written consent.

                              -

                              - 7.2 User Content +

                              + 8.2 User-Generated Content

                              -

                              - You retain ownership of content you create and upload to the - platform. However, by uploading content, you grant us a - worldwide, non-exclusive, royalty-free license to use, display, - and distribute your content as necessary to provide our - services. +

                              + You retain ownership of the content you submit, upload, or + share on the Platform (including courses, notes, materials, + reviews, and profile information). By submitting content, you + grant {COMPANY_INFO.name} a non-exclusive, worldwide, + royalty-free, transferable, sublicensable licence to use, + reproduce, display, distribute, and make available your content + as reasonably necessary to operate, promote, and improve the + Platform. This licence terminates when you remove your content + from the Platform or delete your account, except where your + content has been shared with or relied upon by other users.

                              -

                              - 7.3 Copyright Infringement +

                              + 8.3 Course and Session Content

                              -

                              - We respect intellectual property rights. If you believe your - copyright has been infringed, please contact us with: +

                              + Courses, session materials, presentations, recordings, and + other educational content created by Consultants remain the + intellectual property of their respective creators unless + otherwise agreed in writing. Students may not reproduce, + distribute, sell, share, or create derivative works from + Consultant content without explicit written authorization from + the content creator. Purchasing or attending a session grants + you a personal, non-transferable right to access that content + for your own private learning purposes only. +

                              + + + + {/* Section 9: Prohibited Activities */} +

                              + 9. Prohibited Activities +

                              +

                              + You agree not to engage in any of the following activities while + using the Platform. Violation of these prohibitions may result + in account suspension, termination, and/or legal action:

                              -
                                -
                              • Description of the copyrighted work
                              • -
                              • Location of the infringing material
                              • -
                              • Your contact information
                              • +
                                • - A statement of good faith belief that use is unauthorized + Illegal Use: Using the Platform for any + purpose that violates applicable local, state, national, or + international law or regulation
                                • - A statement under penalty of perjury that the information is - accurate + Harassment and Abuse: Harassing, bullying, + threatening, intimidating, or abusing other users, + Consultants, or staff, whether through messages, reviews, + sessions, or any other means +
                                • +
                                • + Fraud and Misrepresentation: Posting false, + misleading, or fraudulent information, including fake + reviews, fabricated credentials, or deceptive listings
                                • -
                                - - - -

                                - 8. Cancellation and Refunds -

                                -

                                - Cancellations and refunds are governed by our{" "} - - Cancellation & Refund Policy - - . Please review that policy for detailed information about - cancellation rules, refund eligibility, and processing times. -

                                -

                                Key points:

                                -
                                  -
                                • Cancellation rules vary by service type
                                • -
                                • Refunds are processed based on timing of cancellation
                                • -
                                • Platform may charge cancellation fees in certain cases
                                • -
                                • Refunds are processed within 5-7 business days
                                • -
                                - - - -

                                - 9. Platform Termination Rights -

                                -

                                We reserve the right to:

                                -
                                  -
                                • Cancel bookings if payment is not received
                                • - Remove content that violates these Terms or applicable laws + Data Scraping: Using bots, crawlers, + scrapers, or any automated tools to collect, extract, or + harvest data from the Platform without our express written + permission +
                                • +
                                • + Unauthorized Access: Attempting to gain + unauthorized access to our systems, servers, networks, + databases, or other users' accounts through hacking, + password mining, or any other method +
                                • +
                                • + Impersonation: Impersonating another person, + entity, or organization, or falsely representing your + affiliation with any person or entity +
                                • +
                                • + Off-Platform Solicitation: Soliciting users + to conduct transactions, communications, or engagements + outside the Platform for the purpose of circumventing + platform fees or policies +
                                • +
                                • + Service Disruption: Interfering with, + disrupting, or attempting to compromise the security, + integrity, or performance of the Platform or its underlying + infrastructure +
                                • +
                                • + Unauthorized Commercial Use: Using the + Platform for unauthorized advertising, spam, promotional + materials, or commercial solicitation without our prior + written consent
                                • -
                                • Suspend or terminate accounts for violations
                                • -
                                • Modify or discontinue services with reasonable notice
                                • -
                                • Refuse service to anyone for any reason
                                - + -

                                + {/* Section 10: Disclaimers and Limitations of Liability */} +

                                10. Disclaimers and Limitations of Liability

                                -

                                - 10.1 Service "As Is" +

                                + 10.1 Service Provided "As Is"

                                -

                                - Our platform and services are provided "as is" without - warranties of any kind, either express or implied. We do not +

                                + The Platform and all content, services, and features available + through it are provided on an "as is" and "as + available" basis without warranties of any kind, whether + express, implied, or statutory. To the fullest extent permitted + by applicable law, {COMPANY_INFO.name} disclaims all + warranties, including but not limited to implied warranties of + merchantability, fitness for a particular purpose, and + non-infringement. Without limiting the foregoing, we do not guarantee:

                                -
                                  -
                                • Uninterrupted or error-free service
                                • -
                                • Quality or accuracy of Consultant services
                                • -
                                • Specific outcomes or results from educational services
                                • -
                                • That the platform will meet your specific requirements
                                • -
                                - -

                                - 10.2 Third-Party Services -

                                -

                                - We are not responsible for the conduct, content, or services - provided by: -

                                -
                                  -
                                • Consultants using our platform
                                • +
                                  • - Third-party service providers (Razorpay, GetStream, etc.) + Any specific learning outcomes, academic results, career + advancement, or professional benefits from using the + Platform +
                                  • +
                                  • + The accuracy, completeness, reliability, or timeliness of + information provided by Consultants or other users +
                                  • +
                                  • + Uninterrupted, error-free, or secure access to the Platform + at all times +
                                  • +
                                  • + That any defects or errors in the Platform will be corrected + within any specific timeframe
                                  • -
                                  • External websites linked from our platform
                                  -

                                  - 10.3 Limitation of Liability +

                                  + 10.2 Limitation of Liability

                                  -

                                  - To the maximum extent permitted by law, {COMPANY_INFO.name}{" "} - shall not be liable for: +

                                  + To the maximum extent permitted by applicable law,{" "} + {COMPANY_INFO.name}, its directors, officers, employees, + affiliates, and agents shall not be liable for any indirect, + incidental, special, consequential, exemplary, or punitive + damages, including but not limited to loss of profits, data, + goodwill, business opportunities, or other intangible losses, + arising out of or in connection with your use of or inability + to use the Platform.

                                  -
                                    -
                                  • Indirect, incidental, special, or consequential damages
                                  • -
                                  • Loss of profits, data, or business opportunities
                                  • -
                                  • - Damages arising from use or inability to use the platform -
                                  • -
                                  • Issues arising from Consultant services or conduct
                                  • -
                                  • Technical failures, security breaches, or data loss
                                  • -
                                  -

                                  - Our total liability for any claim shall not exceed the amount - you paid to us in the 12 months preceding the claim, or INR - 10,000, whichever is less. +

                                  + In no event shall {COMPANY_INFO.name}'s total aggregate + liability to you for all claims arising out of or relating to + these Terms or the Platform exceed the lower of: (a) the + total amount of fees you have paid to {COMPANY_INFO.name} in + the twelve (12) months immediately preceding the event giving + rise to the claim, or (b) Rs. 10,000 (Indian Rupees Ten + Thousand).

                                  -

                                  - 10.4 Force Majeure +

                                  + 10.3 Third-Party and Consultant Disclaimers

                                  -

                                  - We are not liable for any failure or delay in performance due to - circumstances beyond our reasonable control, including natural - disasters, wars, pandemics, strikes, or technical failures. +

                                  + As a marketplace intermediary, {COMPANY_INFO.name} is not + liable for:

                                  +
                                    +
                                  • + The performance, quality, accuracy, or appropriateness of + services provided by Consultants +
                                  • +
                                  • + Disputes, disagreements, or conflicts between Students and + Consultants, or between any users of the Platform +
                                  • +
                                  • + Failures, outages, or issues caused by third-party service + providers, including payment processors, hosting providers, + video conferencing tools, or internet service providers +
                                  • +
                                  • + Any advice, recommendations, or representations made by + Consultants during sessions or through the Platform +
                                  • +
                                  - + -

                                  + {/* Section 11: Indemnification */} +

                                  11. Indemnification

                                  -

                                  +

                                  You agree to indemnify, defend, and hold harmless{" "} - {COMPANY_INFO.name}, its officers, directors, employees, and - agents from any claims, damages, losses, liabilities, and - expenses (including legal fees) arising from: -

                                  -
                                    -
                                  • Your use of the platform
                                  • -
                                  • Your violation of these Terms
                                  • -
                                  • Your violation of any rights of another party
                                  • -
                                  • Your content uploaded to the platform
                                  • -
                                  • Your conduct as a Consultant or Student
                                  • + {COMPANY_INFO.name}, its directors, officers, employees, + affiliates, agents, and licensors from and against any and all + claims, demands, actions, liabilities, damages, losses, costs, + and expenses (including reasonable attorneys' fees and + legal costs) arising out of or in connection with: +

                                    +
                                      +
                                    • Your violation of any provision of these Terms
                                    • +
                                    • + Your use or misuse of the Platform, including any activity + conducted through your account +
                                    • +
                                    • + Any content you submit, upload, or share on the Platform +
                                    • +
                                    • + Your violation of any rights of a third party, including + intellectual property rights, privacy rights, or contractual + obligations +
                                    • +
                                    • + Any claim by a third party arising from your acts or + omissions in connection with the Platform +
                                    +

                                    + This indemnification obligation shall survive the termination + of your account and these Terms. +

                                    - + -

                                    + {/* Section 12: Dispute Resolution */} +

                                    12. Dispute Resolution

                                    - -

                                    - 12.1 Informal Resolution -

                                    -

                                    - In the event of any dispute, you agree to first contact us at{" "} - - {COMPANY_INFO.email} - {" "} - to attempt to resolve the issue informally. We will work in good - faith to resolve disputes amicably. -

                                    - -

                                    - 12.2 Mediation -

                                    -

                                    - If informal resolution fails, disputes may be referred to - mediation before pursuing legal action. +

                                    + Any dispute, controversy, or claim arising out of or relating + to these Terms or the use of the Platform shall be resolved + through the following process:

                                    +
                                      +
                                    • + Informal Resolution: The parties shall first + attempt to resolve the dispute informally by contacting us + at{" "} + + {COMPANY_INFO.supportEmail} + + . We will make good faith efforts to resolve your concern + within thirty (30) days of receiving your written notice of + the dispute +
                                    • +
                                    • + Mediation: If the dispute cannot be resolved + informally, the parties agree to attempt to settle it through + mediation administered by a mutually agreed-upon mediator + before resorting to litigation +
                                    • +
                                    • + Governing Law: These Terms and any disputes + arising hereunder shall be governed by and construed in + accordance with the laws of{" "} + {COMPANY_INFO.jurisdiction}, without regard to its conflict + of law principles +
                                    • +
                                    • + Jurisdiction: Subject to the informal + resolution and mediation requirements above, the courts of{" "} + {COMPANY_INFO.jurisdiction} shall have exclusive jurisdiction + over any legal proceedings arising out of or relating to + these Terms +
                                    • +
                                    -

                                    - 12.3 Governing Law -

                                    -

                                    - These Terms shall be governed by and construed in accordance - with the laws of {COMPANY_INFO.jurisdiction}, without regard to - its conflict of law provisions. -

                                    + -

                                    - 12.4 Jurisdiction -

                                    -

                                    - You agree to submit to the exclusive jurisdiction of the courts - located in {COMPANY_INFO.jurisdiction} for the resolution of any - disputes. + {/* Section 13: Compliance with Indian Law */} +

                                    + 13. Compliance with Indian Law +

                                    +

                                    + {COMPANY_INFO.name} operates in compliance with applicable + Indian laws and regulations. The following legal frameworks + apply to the operation of the Platform:

                                    +
                                      +
                                    • + Consumer Protection (E-Commerce) Rules, 2020:{" "} + As a marketplace e-commerce entity, {COMPANY_INFO.name}{" "} + fulfils its obligations under the Consumer Protection + (E-Commerce) Rules, 2020, including displaying accurate + information about Consultants and services, providing a + grievance redressal mechanism, and ensuring fair treatment of + consumers. We do not exercise ownership or control over the + services offered by Consultants on the Platform +
                                    • +
                                    • + Information Technology Act, 2000: The + Platform operates as an intermediary under the Information + Technology Act, 2000, and complies with the Information + Technology (Intermediary Guidelines and Digital Media Ethics + Code) Rules, 2021. We maintain the necessary due diligence + standards, content moderation procedures, and grievance + officer designations as required under these provisions +
                                    • +
                                    • + Consumer Protection Act, 2019: Students + using the Platform are entitled to the protections afforded + by the Consumer Protection Act, 2019, including the right to + file complaints with the appropriate consumer forum. Nothing + in these Terms shall be construed to limit or restrict any + statutory consumer rights +
                                    • +
                                    - + -

                                    - 13. Privacy and Data Protection + {/* Section 14: Privacy */} +

                                    + 14. Privacy

                                    -

                                    - Your use of our services is also governed by our{" "} +

                                    + Your use of the Platform is also governed by our{" "} Privacy Policy - , which describes how we collect, use, and protect your personal - information. By using our services, you consent to our data - practices as described in the Privacy Policy. + , which describes in detail how we collect, use, store, share, + and protect your personal information. By using the Platform, + you consent to the practices described in the Privacy Policy. + We encourage you to review the Privacy Policy carefully and + contact us if you have any questions about how your data is + handled.

                                    - + -

                                    - 14. Changes to Terms + {/* Section 15: Changes to Terms */} +

                                    + 15. Changes to Terms

                                    -

                                    - We reserve the right to modify these Terms at any time. We will - notify you of material changes by: -

                                    -
                                      -
                                    • Posting the updated Terms on this page
                                    • -
                                    • Updating the "Last Updated" date
                                    • -
                                    • Sending email notifications for significant changes
                                    • -
                                    • Displaying a notice on the platform
                                    • +

                                      + {COMPANY_INFO.name} reserves the right to modify, amend, or + update these Terms at any time at our sole discretion. When we + make material changes, we will: +

                                      +
                                        +
                                      • + Post the revised Terms on this page with an updated + "Last Updated" date +
                                      • +
                                      • + Send a notification to registered users via email or through + in-platform notifications to inform them of the changes +
                                      -

                                      - Your continued use of the platform after changes are posted - constitutes your acceptance of the updated Terms. If you do not - agree to the changes, you must stop using our services. +

                                      + Your continued use of the Platform after the revised Terms + have been posted constitutes your acceptance of the updated + Terms. If you do not agree with the changes, you must + discontinue use of the Platform and may request account + deletion.

                                      - + -

                                      - 15. Severability + {/* Section 16: Severability */} +

                                      + 16. Severability

                                      -

                                      - If any provision of these Terms is found to be invalid or - unenforceable, the remaining provisions will continue to be - valid and enforceable to the fullest extent permitted by law. +

                                      + If any provision or part of a provision of these Terms is found + to be invalid, illegal, or unenforceable by a court of + competent jurisdiction, such finding shall not affect the + validity and enforceability of the remaining provisions, which + shall continue in full force and effect. The invalid or + unenforceable provision shall be deemed modified to the minimum + extent necessary to make it valid and enforceable while + preserving the parties' original intent.

                                      - + -

                                      - 16. Entire Agreement + {/* Section 17: Entire Agreement */} +

                                      + 17. Entire Agreement

                                      -

                                      - These Terms, together with our Privacy Policy and Cancellation & - Refund Policy, constitute the entire agreement between you and - {COMPANY_INFO.name} regarding your use of the platform and - supersede all prior agreements and understandings. +

                                      + These Terms, together with our{" "} + + Privacy Policy + + ,{" "} + + Cancellation & Refund Policy + + , and{" "} + + Contractor Agreement + {" "} + (for Consultants), constitute the entire agreement between you + and {COMPANY_INFO.name} regarding your use of the Platform. + These documents supersede all prior and contemporaneous + understandings, agreements, representations, and warranties, + whether written or oral, regarding the subject matter herein. + No waiver of any provision of these Terms shall be deemed a + further or continuing waiver of such provision or any other + provision.

                                      - + -

                                      - 17. Contact Information + {/* Section 18: Contact Us */} +

                                      + 18. Contact Us

                                      -

                                      - If you have any questions about these Terms & Conditions, please - contact us: +

                                      + If you have any questions, concerns, or feedback regarding + these Terms & Conditions, please reach out to us through + any of the following channels:

                                      -
                                      -

                                      - Company Name: {COMPANY_INFO.name} -

                                      -

                                      - Address: {COMPANY_INFO.address} +

                                      +

                                      + Company: {COMPANY_INFO.name}

                                      -

                                      +

                                      Email:{" "}

                                      -

                                      +

                                      + Support Email:{" "} + + {COMPANY_INFO.supportEmail} + +

                                      +

                                      Contact Form:{" "}

                                      - + -