@extends('frontend.layouts.app') {{-- Extend your main layout --}}
@push('styles')
@endpush
@section('content')
@php
$sections = [
[
'id' => 'section-1',
'num' => '01',
'title' => '1. Acceptance of Terms',
'content' => 'By accessing or using Hi-Tech Pathshala ("we", "our", or "us"), you agree to be bound by these Terms and Conditions and our Privacy Policy.',
'icon' => 'file-text'
],
[
'id' => 'section-2',
'num' => '02',
'title' => '2. Use of Our Services',
'content' => 'You may use our services only for lawful purposes and in accordance with these Terms. We reserve the right to modify or discontinue any part of our services without notice.',
'icon' => 'monitor'
],
[
'id' => 'section-3',
'num' => '03',
'title' => '3. User Accounts',
'content' => 'You are responsible for maintaining the confidentiality of your account credentials and for all activities under your account.',
'icon' => 'user'
],
[
'id' => 'section-4',
'num' => '04',
'title' => '4. Fees and Payments',
'content' => 'Some services may require payment. All fees are non-refundable unless stated otherwise. We reserve the right to change our pricing at any time.',
'icon' => 'credit-card'
],
[
'id' => 'section-5',
'num' => '05',
'title' => '5. Intellectual Property',
'content' => 'All content on this platform, including text, graphics, logos, and videos, is the property of Hi-Tech Pathshala and is protected by copyright and other laws.',
'icon' => 'copyright'
],
[
'id' => 'section-6',
'num' => '06',
'title' => '6. User Conduct',
'content' => 'You agree not to misuse our services, upload harmful content, or attempt to gain unauthorized access to any part of our platform.',
'icon' => 'shield'
],
[
'id' => 'section-7',
'num' => '07',
'title' => '7. Content and Materials',
'content' => 'We do not guarantee the accuracy or completeness of content. Materials are provided for educational purposes only.',
'icon' => 'book'
],
[
'id' => 'section-8',
'num' => '08',
'title' => '8. Limitation of Liability',
'content' => 'Hi-Tech Pathshala shall not be liable for any indirect, incidental, or consequential damages arising from the use or inability to use our services.',
'icon' => 'alert'
],
[
'id' => 'section-9',
'num' => '09',
'title' => '9. Termination',
'content' => 'We may suspend or terminate your access to our services at any time, with or without cause, and without prior notice.',
'icon' => 'power'
],
[
'id' => 'section-10',
'num' => '10',
'title' => '10. Changes to Terms',
'content' => 'We may update these Terms from time to time. We will notify users of any material changes through our website or email.',
'icon' => 'refresh'
],
[
'id' => 'section-11',
'num' => '11',
'title' => '11. Governing Law',
'content' => 'These Terms shall be governed by and construed in accordance with the laws of India.',
'icon' => 'gavel'
],
[
'id' => 'section-12',
'num' => '12',
'title' => '12. Contact Us',
'content' => 'If you have any questions about these Terms, please contact us at support@hitechpathshala.com.',
'icon' => 'mail'
],
];
@endphp
@if (!View::hasSection('styles'))
@endif
{{-- Header Banner Section --}}
Terms and Conditions
Last Updated: 24 May 2024
Please read these terms and conditions carefully before using Hi-Tech Pathshala.
By accessing or using our website and services, you agree to be bound by these terms.
{{-- Main Body Layout --}}
{{-- Left Navigation Sidebar --}}
{{-- Right Content Area --}}
@foreach ($sections as $section)