@php $themeMode = \App\Helpers\SeoHelper::themeMode(); $customColor = \App\Helpers\SeoHelper::customPrimaryColor(); // Generate theme-based classes if ($themeMode === 'custom' && $customColor) { $shades = \App\Helpers\SeoHelper::generateColorShades($customColor); $linkClass = 'font-semibold transition hover:opacity-80'; $linkStyle = 'color: ' . $customColor; $buttonClass = 'inline-flex items-center px-4 py-2 text-white font-semibold rounded-lg shadow-lg transition hover:opacity-90'; $buttonStyle = 'background: linear-gradient(to right, ' . $customColor . ', ' . $shades['700'] . ');'; } else { $linkClass = 'text-blue-600 dark:text-blue-400 hover:text-blue-700 dark:hover:text-blue-300 font-semibold transition'; $linkStyle = ''; $buttonClass = 'inline-flex items-center px-4 py-2 bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-semibold rounded-lg shadow-lg transition'; $buttonStyle = ''; } // Generate prose link color class if ($themeMode === 'custom' && $customColor) { $proseClass = 'prose prose-lg dark:prose-invert max-w-none prose-headings:text-gray-900 dark:prose-headings:text-gray-50 prose-p:text-gray-700 dark:prose-p:text-gray-200 prose-strong:text-gray-900 dark:prose-strong:text-gray-100'; } else { $proseClass = 'prose prose-lg dark:prose-invert max-w-none prose-headings:text-gray-900 dark:prose-headings:text-gray-50 prose-p:text-gray-700 dark:prose-p:text-gray-200 prose-a:text-blue-600 dark:prose-a:text-blue-400 prose-strong:text-gray-900 dark:prose-strong:text-gray-100'; } // SEO meta data $siteName = \App\Models\Setting::get('site_name', config('app.name')); $metaTitle = 'Terms and Conditions - ' . $siteName; $metaDescription = 'Read our terms and conditions to understand the rules and guidelines for using our platform.'; @endphp {!! \App\Helpers\SeoHelper::generateMetaTags( $metaTitle, $metaDescription, null, [] ) !!} @if(\App\Helpers\SeoHelper::favicon()) @endif {!! \App\Helpers\SeoHelper::organizationSchema() !!} @if(\App\Helpers\SeoHelper::themeMode() === 'custom') @endif @if(\App\Helpers\SeoHelper::googleAnalyticsId()) {!! \App\Helpers\SeoHelper::googleAnalyticsScript() !!} @endif @vite(['resources/css/app.css', 'resources/js/app.js'])
@include('layouts.navigation')
@if($themeMode === 'custom' && $customColor) @endif {!! $content !!}
@if(empty($content))

No Terms and Conditions

The terms and conditions content has not been set yet.

@auth @if(auth()->user()->isAdmin()) @endif @endauth
@endif