// Convertir componentes React a templates PHP
// header.php
<?php get_header(); ?>
<header class="bg-white shadow-sm fixed top-0 w-full z-50">
<!-- Código HTML del header -->
</header>
// index.php
<main class="min-h-screen">
<?php get_template_part('template-parts/hero-section'); ?>
<?php get_template_part('template-parts/properties-section'); ?>
<!-- etc -->
</main>
