Skip to content

Commit

Permalink
Fix staff
Browse files Browse the repository at this point in the history
  • Loading branch information
xalatechnologies committed Sep 17, 2024
1 parent 0fafbd9 commit de8d09e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row1.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
?>

<!-- Our Services Section -->
<section class="services-section py-5 bg-grey position-relative">
<section id="Services" class="services-section py-5 bg-grey position-relative">
<div class="background-design"></div>
<div class="container text-center">
<h2 class="services-title mb-4">{{ __('frontend.services') }}</h2>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row2.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
?>
@if(count($Portfolios)>0)
<!-- Work For Our Clients Section -->
<section class="work-section py-5">
<section id="CaseStudy" class="work-section py-5">
<div class="container">
<!-- Section Heading: Badge on one line, Title and Arrows on the next -->
<div class="row mb-4">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row3.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$Staff = Helper::Topics(Helper::GeneralWebmasterSettings("home_content5_section_id"), 0, $StaffLimit, 1);
?>
@if(count($Staff)>0)
<section id="staff" class="staff bg-grey">
<section id="Staff" id="staff" class="staff bg-grey">
<div class="container">
<h2 class="section-title">{{ __('frontend.homeStaffTitle') }}</h2>
<p class="section-subtitle text-center mb-5">{{ __('frontend.homeStaffDesc') }}</p>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row4.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$Technologies = Helper::Topics(16, 0, $TechnologiesLimit, 1);
?>
@if(count($Technologies)>0)
<section class="tools-section py-5 bg-light-green">
<section id="Tools" class="tools-section py-5 bg-light-green">
<div class="container">
<!-- Section Title -->
<div class="row mb-4 text-center">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row5.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
?>
@if(count($Processes)>0)
<!-- Process Model Section similar to Agile Software Model -->
<section class="agile-process-section bg-grey py-8">
<section id="Agile" class="agile-process-section bg-grey py-8">
<div class="container text-center">
<!-- Section Title -->
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row6.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$Testimonials = Helper::Topics(11, 0, $TestimonialsLimit, 1);
?>
@if(count($Testimonials)>0)
<section id="testimonials" class="testimonials bg-light-green">
<section id="Testimonials" id="testimonials" class="testimonials bg-light-green">
<div class="container text-center">
<h2 class="section-title">{{ __('frontend.homeTestimonialsTitle') }}</h2>
<p class="section-subtitle mb5">{{ __('frontend.homeTestimonialsDesc') }}</p>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/homepage/row7.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Contact Us Section -->
<section class="contact-us-section bg-grey py-5">
<section id="Contact" class="contact-us-section bg-grey py-5">
<div class="container">
<!-- Section Title -->
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontEnd/topic/share.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="bottom-article mb-3">
<div class="bottom-article mb-3 d-none">
<div class="d-flex justify-content-between">
<div class="share-title text-muted d-flex"><i class="fa-solid fa-square-share-nodes"></i> {{ __('frontend.share') }}</div>
<ul class="social-network share d-flex">
Expand Down

0 comments on commit de8d09e

Please sign in to comment.