sunshibo 1 неделя назад
Родитель
Сommit
0b33dee1eb
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/views/HomePage.vue

+ 2 - 0
src/views/HomePage.vue

@@ -1,6 +1,7 @@
 <script setup>
 import HeroSection from '../components/HeroSection.vue'
 import MainBusiness from '../components/MainBusiness.vue'
+import CompanyProfile from '../components/CompanyProfile.vue'
 import BusinessScope from '../components/BusinessScope.vue'
 import AppFooter from '../components/AppFooter.vue'
 
@@ -10,6 +11,7 @@ const emit = defineEmits(['navigate'])
 <template>
   <HeroSection @navigate="emit('navigate', $event)" />
   <MainBusiness />
+  <CompanyProfile />
   <BusinessScope />
   <AppFooter @navigate="emit('navigate', $event)" />
 </template>