Portfolio

Our Featured Projects

A selection of projects we have successfully completed with high client satisfaction.

@php // Project data from Company Profile PDF $all_projects = [ [ 'title' => 'DED BUILDING OF PODOMORO STATION', 'location' => 'Tenjo, Bogor', 'category' => 'Railway Station', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], 'url' => 'ded-building-of-podomoro-station', ], [ 'title' => 'DED BUILDING OF PADALARANG STATION', 'location' => 'Bandung', 'category' => 'Railway Station', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Electrical System'], 'url' => 'ded-building-of-padalarang-station', ], [ 'title' => 'DED BUILDING OF RUSUN METRO', 'location' => 'Kedaung, Tangerang', 'category' => 'Public Housing', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Plumbing System'], 'url' => 'ded-building-of-rusun-metro', ], [ 'title' => 'DED BUILDING OF RUSUN BNN', 'location' => 'South Jakarta', 'category' => 'Special Housing', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], 'url' => 'ded-building-of-rusun-bnn', ], [ 'title' => 'DED BUILDING OF I HOUSE', 'location' => 'Jagakarsa', 'category' => 'Residential', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Interior Design'], 'url' => 'ded-building-of-i-house', ], [ 'title' => 'DED BUILDING OF TK CITA GLOBAL', 'location' => 'Tangerang', 'category' => 'Education', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], 'url' => 'ded-building-of-tk-cita-global', ], [ 'title' => 'DED BUILDING OF TROPICANA RESIDENCE', 'location' => 'Cikarang', 'category' => 'Apartment', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], 'url' => 'ded-building-of-tropicana-residence', ], [ 'title' => 'DED BUILDING OF LA HOUSE', 'location' => 'Cikarang', 'category' => 'Residential', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Landscape Design'], 'url' => 'ded-building-of-la-house', ], [ 'title' => 'DED OF JATIPADANG HOUSE', 'location' => 'South Jakarta', 'category' => 'Residential', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture'], 'url' => 'ded-of-jatipadang-house', ], [ 'title' => 'DED BUILDING OF RUSUN ASN PUPR', 'location' => 'Semarang', 'category' => 'Government Housing', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'MEP System'], 'url' => 'ded-building-of-rusun-asn-pupr', ], [ 'title' => 'DED BUILDING OF PPKD', 'location' => 'East Jakarta', 'category' => 'Government Facility', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Security System'], 'url' => 'ded-building-of-ppkd', ], [ 'title' => 'DED BUILDING OF RUSUN MBR', 'location' => 'Surakarta', 'category' => 'Affordable Housing', 'year' => '2024', 'scope' => ['Structural Design', 'Architecture', 'Plumbing System'], 'url' => 'ded-building-of-rusun-mbr', ], ]; // Shuffle projects (display 3 random projects) $random_projects = collect($all_projects)->shuffle()->take(3); // Gradient background colors $colors = [ 'from-blue-400/30 to-blue-600/30', 'from-green-400/30 to-green-600/30', 'from-purple-400/30 to-purple-600/30', 'from-yellow-400/30 to-yellow-600/30', 'from-red-400/30 to-red-600/30', 'from-indigo-400/30 to-indigo-600/30', ]; @endphp
@foreach ($random_projects as $index => $project)
{{ $project['category'] }}

{{ $project['title'] }}

{{ $project['location'] }} {{ $project['year'] }}
@foreach ($project['scope'] as $item) {{ $item }} @endforeach
@endforeach