@extends('frontend::layouts.master') @section('content') @php $sp_word = explode(' ', $link_about['name']); $last_word = end($sp_word); $title = str_replace($last_word, '', $link_about['name']); if (empty($title)) { $title = $link_about['name']; $last_word = ''; } @endphp @include('frontend::components.page-hero', [ 'title' => $title, 'titleHighlight' => $last_word, 'subtitle' => $link_about['desc'] ?? '', 'image' => !empty($link_about['image']) ? asset($link_about['image']) : '', 'imageAlt' => $link_about['name'] ?? '', 'imagePosition' => 'object-center', ]) {{-- Overview Stats Section (commented out for now) --}} {{--

Company Overview

Thai Shinkong Industry Corporation is a joint venture combining expertise from global leaders

1994

Established

August 30

1.8B

Capital

Baht

62% + 34%

Shareholders

Shinkong • Mitsubishi

1,100

Plant Capacity

MT/day Total

Plant 1

500 MT/day production capacity with traditional PET resin manufacturing technology

Plant 2

600 MT/day with advanced chemical recycling technology for sustainable production

--}} {{-- Vision & Mission Section --}} @if (!empty($overview['detail'])) {!! $overview['detail'] ?? '' !!} {{--
--}} {{-- Save Class: Vision & Mission Content for input into a text editor --}} {{-- --}} {{--
--}} @endif {{-- Milestones Timeline --}} @if (!empty($history['list'][0]))
@include('frontend::components.tsic-ellipse-decoration')

{{ __('frontend::lang.page.about.our_journey') }}

{{ __('frontend::lang.page.about.our_journey_desc') }}

@foreach ($history['list'] as $h) @php $milestoneStyles = [['year' => 'from-tsic-blue to-tsic-purple', 'panel' => 'border-tsic-blue/25', 'title' => 'text-tsic-blue', 'shadow' => 'shadow-[0_16px_36px_-24px_rgba(15,17,207,0.5)]'], ['year' => 'from-tsic-green to-tsic-dark-green', 'panel' => 'border-tsic-green/25', 'title' => 'text-tsic-dark-green', 'shadow' => 'shadow-[0_16px_36px_-24px_rgba(51,153,51,0.45)]']]; $style = $milestoneStyles[$loop->index % count($milestoneStyles)]; @endphp
{{ $h['link'] ?? '' }}

{{ $h['name'] ?? '' }}

{{ $h['desc'] ?? '' }}

@endforeach
@endif @include('frontend::components.certifications-section') @include('frontend::components.cta-section') @endsection