@extends('frontend.layouts.master') @section('title', 'Novalynk - Integrated Ecosystem for Business & Life') @php $localizedHeroTitle = app()->isLocale('en') ? __('front.content.home.hero_title') : ($settings['hero_title'] ?? __('front.content.home.hero_title')); $localizedHeroSubtitle = app()->isLocale('en') ? __('front.content.home.hero_subtitle') : ($settings['hero_subtitle'] ?? __('front.content.home.hero_subtitle')); $localizedServicesTitle = app()->isLocale('en') ? __('front.content.home.services_title') : ($settings['services_title'] ?? __('front.content.home.services_title')); $localizedServicesSubtitle = app()->isLocale('en') ? __('front.content.home.services_subtitle') : ($settings['services_subtitle'] ?? __('front.content.home.services_subtitle')); $localizedTechnologiesTitle = app()->isLocale('en') ? __('front.content.home.technologies_title') : ($settings['technologies_title'] ?? __('front.content.home.technologies_title')); $localizedTechnologiesSubtitle = app()->isLocale('en') ? __('front.content.home.technologies_subtitle') : ($settings['technologies_subtitle'] ?? __('front.content.home.technologies_subtitle')); $localizedPortfolioTitle = app()->isLocale('en') ? __('front.content.home.portfolio_title') : ($settings['portfolio_title'] ?? __('front.content.home.portfolio_title')); $localizedPortfolioSubtitle = app()->isLocale('en') ? __('front.content.home.portfolio_subtitle') : ($settings['portfolio_subtitle'] ?? __('front.content.home.portfolio_subtitle')); $localizedBlogTitle = app()->isLocale('en') ? __('front.content.home.blog_title') : ($settings['blog_title'] ?? __('front.content.home.blog_title')); $localizedBlogSubtitle = app()->isLocale('en') ? __('front.content.home.blog_subtitle') : ($settings['blog_subtitle'] ?? __('front.content.home.blog_subtitle')); $localizedCtaTitle = app()->isLocale('en') ? __('front.content.home.cta_title') : ($settings['cta_title'] ?? __('front.content.home.cta_title')); $localizedCtaDescription = app()->isLocale('en') ? __('front.content.home.cta_description') : ($settings['cta_description'] ?? __('front.content.home.cta_description')); $localizedCtaButton = app()->isLocale('en') ? __('front.content.home.cta_button_text') : ($settings['cta_button_text'] ?? __('front.content.home.cta_button_text')); @endphp @section('styles') @endsection @section('content') @if($sliders->isNotEmpty())
@else
{{ __('front.home.chip') }}

{{ $localizedHeroTitle }}

{{ $localizedHeroSubtitle }}

{{ $stats['projects'] }} {{ __('front.home.projects_done') }}
{{ $stats['clients'] }} {{ __('front.home.satisfied_clients') }}
{{ $stats['years'] }} {{ __('front.home.years_experience') }}
{{ $stats['team'] }} {{ __('front.home.expert_team') }}
@endif

{{ $localizedServicesTitle }}

{{ $localizedServicesSubtitle }}

@foreach($services as $index => $service)

{{ $service->name }}

{{ $service->short_description }}

{{ __('front.common.read_more') }}
@endforeach

{{ $localizedTechnologiesTitle }}

{{ $localizedTechnologiesSubtitle }}

@foreach($technologies as $tech)

{{ $tech->name }}

@endforeach

{{ $localizedPortfolioTitle }}

{{ $localizedPortfolioSubtitle }}

@foreach($portfolios as $index => $portfolio)
{{ $portfolio->title }}

{{ $portfolio->title }}

{{ $portfolio->client_name }}

{{ __('front.common.view_detail') }}
@endforeach
@if(count($testimonials) > 0)

{{ __('front.home.testimonials_title') }}

{{ __('front.home.testimonials_subtitle') }}

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

"{{ $testimonial->content }}"

{{ $testimonial->name }}
{{ $testimonial->position }}{{ $testimonial->company ? ' - ' . $testimonial->company : '' }}
@endforeach
@endif @if(count($blogs) > 0)

{{ $localizedBlogTitle }}

{{ $localizedBlogSubtitle }}

@foreach($blogs as $blog)
{{ $blog->title }}
{{ $blog->category->name ?? __('front.common.uncategorized') }}

{{ $blog->title }}

{{ $blog->short_description ?? Str::limit(strip_tags($blog->content), 100) }}

{{ optional($blog->published_at ?? $blog->created_at)->format('d M Y') }} {{ $blog->views }} views
@endforeach
@endif

{{ $localizedCtaTitle }}

{{ $localizedCtaDescription }}

{{ $localizedCtaButton }}
@endsection