34 lines
715 B
Vue
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>
|