@extends('frontend.layouts.app') @section('title', $settings->company_name ?? 'Home') @section('content')
@if($hero->subtitle ?? false) {{ $hero->subtitle }} @endif

{!! preg_replace('/(\w+)$/i', '$1', $hero->title ?? 'Build Your Digital Presence') !!}

@if($hero->description ?? false)

{{ $hero->description }}

@endif
@if($hero->button_text ?? false) {{ $hero->button_text }} @endif @if($hero->button_text_secondary ?? false) {{ $hero->button_text_secondary }} @endif
@if($services->count() > 0)

Our Services

Comprehensive solutions tailored to transform your digital presence and drive business growth.

@foreach($services as $index => $service)
@include('frontend.partials.icon', ['icon' => $service->icon ?? 'code'])

{{ $service->title }}

{{ Str::limit($service->description, 120) }}

Learn More
@endforeach
@endif @if($about)
@if($about->image_url) About @else

About Us Image

@endif

{{ $about->title }}

{{ Str::limit($about->content, 300) }}

@if($about->years_experience || $about->projects_completed || $about->happy_clients)
@if($about->years_experience)

{{ $about->years_experience }}+

Years Experience

@endif @if($about->projects_completed)

{{ $about->projects_completed }}+

Projects Done

@endif @if($about->happy_clients)

{{ $about->happy_clients }}+

Happy Clients

@endif
@endif Learn More About Us
@endif @if($portfolios->count() > 0)

Featured Work

Explore some of our recent projects and see how we help businesses succeed.

@foreach($portfolios as $index => $portfolio)
@if($portfolio->image_url) {{ $portfolio->title }} @else
@endif
@if($portfolio->category) {{ $portfolio->category }} @endif

{{ $portfolio->title }}

@endforeach
@endif @if($testimonials->count() > 0)

What Our Clients Say

Don't just take our word for it — hear from some of our satisfied clients.

@foreach($testimonials as $index => $testimonial)
@for($i = 0; $i < $testimonial->rating; $i++) @endfor

"{{ $testimonial->content }}"

@if($testimonial->client_photo_url) {{ $testimonial->client_name }} @else
{{ substr($testimonial->client_name, 0, 1) }}
@endif

{{ $testimonial->client_name }}

{{ $testimonial->client_position }}{{ $testimonial->client_company ? ', ' . $testimonial->client_company : '' }}

@endforeach
@endif

Ready to Start Your Project?

Let's work together to bring your vision to life. Get in touch with us today.

Get In Touch
@endsection