feat: add front page template with hero section

This commit is contained in:
2026-04-03 01:09:34 +05:00
parent 8c54edf25e
commit d0567fda86
3 changed files with 62 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
/**
* Template Name: Главная страница
*/
defined('ABSPATH') || exit;
get_header();
?>
<main class="front-page">
<?php get_template_part('templates/hero'); ?>
<?php get_template_part('templates/section-filter'); ?>
<?php get_template_part('templates/section-promo-wms'); ?>
<?php get_template_part('templates/section-subscribe'); ?>
<?php get_template_part('templates/section-clients'); ?>
</main>
<?php get_footer();