diff --git a/src/components/Main.vue b/src/components/Main.vue index 35e1a0f..5a0f91b 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -61,8 +61,9 @@ import NavbarWithSearch from "./UI/Navbars/NavbarWithSearch"; import NavbarWithAvatar from "./UI/Navbars/NavbarWithAvatar"; // Sections - import ParagraphWithImage from "./UI/Sections/ParagraphWithImage"; + import AboutMe from "./UI/Sections/AboutMe"; import CardsList from "./UI/Sections/CardsList"; + import ParagraphWithImage from "./UI/Sections/ParagraphWithImage"; // Pagination import Pagination from "./UI/Paginations/Pagination"; // Footers @@ -100,8 +101,9 @@ NavbarWithSearch, NavbarWithAvatar, - ParagraphWithImage, + AboutMe, CardsList, + ParagraphWithImage, Pagination, diff --git a/src/components/UI/Sections/AboutMe.vue b/src/components/UI/Sections/AboutMe.vue new file mode 100644 index 0000000..02cc4ad --- /dev/null +++ b/src/components/UI/Sections/AboutMe.vue @@ -0,0 +1,62 @@ + + + \ No newline at end of file diff --git a/src/components/UI/Sections/CardsList.vue b/src/components/UI/Sections/CardsList.vue index fae6c5c..750abed 100644 --- a/src/components/UI/Sections/CardsList.vue +++ b/src/components/UI/Sections/CardsList.vue @@ -118,7 +118,7 @@ export default { data() { return { - name: 'Cards List Section' + name: 'Cards List' } } }