{{ !empty($frontend_general_settings['feature1_description']) ? $frontend_general_settings['feature1_description'] : get_label(
'streamlineProjectDesc',
'Take control of your projects and boost team productivity with ' .
$general_settings['company_title'] .
', the all-in-one project management and task management solution. Our cloud-based platform empowers you to effortlessly organize projects, collaborate with your team, and track progress – all in one place.'
) }}
{{ !empty($frontend_general_settings['feature2_description']) ? $frontend_general_settings['feature2_description'] : $general_settings['company_title'] . get_label(
'effortlessOrganizationDesc',
'provides a centralized hub to create, manage, and track all your projects. Say goodbye to scattered tasks and missed deadlines – our intuitive interface keeps everything organized and accessible.'
) }}
{{ !empty($frontend_general_settings['feature3_description']) ? $frontend_general_settings['feature3_description'] : get_label(
'seamlessCollaborationDesc',
'Foster a collaborative work environment with ' .
$general_settings['company_title'] .
'. Assign tasks, share files, and communicate effectively with your team in real-time. Ensure everyone is on the same page and working towards a common goal.'
) }}
{{ !empty($frontend_general_settings['feature4_description']) ? $frontend_general_settings['feature4_description'] : get_label(
'visualizeProjectDesc',
'Get insightful dashboards and reports to monitor project performance and identify areas for improvement.'
) }}
{{ get_label('features', 'Features') }}
{{get_label('every','Every')}} {{ get_label('feature', 'Feature') }} {{ get_label('your_team_needs_to', 'Your Team Needs To') }}
{{get_label('complete_work_faster','Complete Work Faster')}}
@php
// Define your features as an array. You can load these from config or the DB as needed.
$features = [
[
'icon' => '',
'image' => '/assets/front-end/img/icons/manage_project.svg',
'title' => !empty($frontend_general_settings['info_about_us_card1_title']) ? $frontend_general_settings['info_about_us_card1_title'] : get_label('manage_projects_efficiently', 'Manage Projects Efficiently'),
'description' => !empty($frontend_general_settings['info_about_us_card1_description']) ? $frontend_general_settings['info_about_us_card1_description'] : get_label('simplify_workflow', 'Simplify your workflow with powerful tools to organize tasks, collaborate in real-time, and track progress — all in one place.')
],
[
'icon' => '',
'image' => '/assets/front-end/img/icons/assign.svg',
'title' => !empty($frontend_general_settings['info_about_us_card2_title']) ? $frontend_general_settings['info_about_us_card2_title'] : get_label('assign_and_monitor_tasks', 'Assign and Monitor Tasks'),
'description' => !empty($frontend_general_settings['info_about_us_card2_description']) ? $frontend_general_settings['info_about_us_card2_description'] : get_label('assign_track_and_team_members', 'Easily assign tasks to team members, set priorities, and track progress in real-time to ensure nothing falls through the cracks.')
],
[
'icon' => '',
'image' => '/assets/front-end/img/icons/collaboration.svg',
'title' => !empty($frontend_general_settings['info_about_us_card3_title']) ? $frontend_general_settings['info_about_us_card3_title'] : get_label('enhance_collaboration','Enhance Collaboration'),
'description' => !empty($frontend_general_settings['info_about_us_card3_description']) ? $frontend_general_settings['info_about_us_card3_description'] : get_label('seamless_collaboration_for_team_success','Connect your team with real-time communication, shared tasks, and seamless file sharing to boost teamwork and productivity.')
]
];
@endphp
@foreach($features as $feature)