Bob AI: Move the siteplan section (available lots) to the top of the

This commit is contained in:
kudinDmitriyUp
2026-06-21 18:01:22 +00:00
parent 27a4dbfd9b
commit b5720cecbc

View File

@@ -1,8 +1,3 @@
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
@@ -14,20 +9,14 @@ import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<AboutSection />
<FeaturesSection />
<SiteplanSection />
<BuildersSection />
<LocationSection />
<ContactSection />
<>
<HeroSection />
<SiteplanSection />
<AboutSection />
<FeaturesSection />
<BuildersSection />
<LocationSection />
<ContactSection />
</>
);
}
}