MSN/src/modules/About/pages/index.vue
abdalmalik1996 e9d53d4339 init
2024-07-09 12:47:31 +03:00

34 lines
715 B
Vue

<template>
<v-sheet color="transparent">
<breadcrumbs :breadcrumbsItems="items" />
<v-row justify="center">
<v-col cols="11">
<introduction />
<ourTeam />
<trustedBy />
</v-col>
</v-row>
</v-sheet>
</template>
<script setup>
import breadcrumbs from "@/core/components/breadcrumbs.vue";
import introduction from "../components/Introduction";
import ourTeam from "../components/ourTeam.vue";
import trustedBy from "../components/trustedBy.vue";
const items = [
{
title: "Home",
disabled: false,
href: "/",
},
{
title: "About",
disabled: true,
href: "/about",
},
];
</script>
<style scoped></style>