Files
company-website/src/pages/property/index.astro
T
2026-05-07 15:52:41 +08:00

19 lines
712 B
Plaintext

---
import Layout from '../../layouts/Layout.astro';
import PropertyHero from '../../components/sections/PropertyHero.astro';
import PropertyPainPoints from '../../components/sections/PropertyPainPoints.astro';
import PropertyArchitecture from '../../components/sections/PropertyArchitecture.astro';
import PropertyFoundation from '../../components/sections/PropertyFoundation.astro';
import PropertyScenarios from '../../components/sections/PropertyScenarios.astro';
---
<Layout title="物业楼宇 - 浙江贝凡网络科技" activeNav="property">
<main class="pt-20">
<PropertyHero />
<PropertyPainPoints />
<PropertyArchitecture />
<PropertyFoundation />
<PropertyScenarios />
</main>
</Layout>