<?php
include 'lp-header.php';
require_once(__DIR__ . '/controllers/SettingController.php');
$setting = new SettingController();
$industryType = $setting->industryType();
$smarty->assign("industry_type", $industryType['data'] ?? []);

$catalog = require __DIR__ . '/config/landing_products.php';
$home_index = $catalog['index'];
if (!empty($catalog['homepage']['hero'])) {
    $home_index['hero'] = array_merge($home_index['hero'], $catalog['homepage']['hero']);
}
$smarty->assign('home_index', $home_index);
$smarty->assign('home_products', $catalog['products']);

$smarty->display("index.tpl");
include 'lp-footer.php';
