diff --git a/components/ui/Heros/CenterContent.vue b/components/ui/Heros/CenterContent.vue new file mode 100644 index 0000000..72a83ce --- /dev/null +++ b/components/ui/Heros/CenterContent.vue @@ -0,0 +1,130 @@ + + + \ No newline at end of file diff --git a/components/ui/Heros/WithImage.vue b/components/ui/Heros/WithImage.vue index 0a51e21..8425269 100644 --- a/components/ui/Heros/WithImage.vue +++ b/components/ui/Heros/WithImage.vue @@ -27,7 +27,7 @@ Why us? Contact - diff --git a/components/ui/Sections/Products.vue b/components/ui/Sections/ProductsWithSideLinks.vue similarity index 99% rename from components/ui/Sections/Products.vue rename to components/ui/Sections/ProductsWithSideLinks.vue index 6e7322f..779b9cc 100644 --- a/components/ui/Sections/Products.vue +++ b/components/ui/Sections/ProductsWithSideLinks.vue @@ -94,7 +94,7 @@ export default { data() { return { - name: 'Products', + name: 'Products With Side Links', code: `
diff --git a/models/Components.js b/models/Components.js index 73ef7f0..3862752 100644 --- a/models/Components.js +++ b/models/Components.js @@ -80,6 +80,7 @@ export default [ components: [ { name: "ECommerce" }, { name: "WithNewsletterForm" }, + { name: "CenterContent" }, { name: "WithSlide" }, { name: "WithImage" }, { name: "WithSideImage" }, @@ -96,7 +97,7 @@ export default [ components: [ { name: "AboutMe" }, { name: "Feature" }, - { name: "Products" }, + { name: "ProductsWithSideLinks" }, { name: "OurTeam" }, { name: "ParagraphWithImage" }, ], diff --git a/pages/index.vue b/pages/index.vue index dd01943..66e5a75 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -160,6 +160,7 @@ import NavbarsWithSocialMediaLinks from "~/components/ui/Navbars/WithSocialMedia // Heros import HerosECommerce from "~/components/ui/Heros/ECommerce"; import HerosWithNewsletterForm from "~/components/ui/Heros/WithNewsletterForm"; +import HerosCenterContent from "~/components/ui/Heros/CenterContent"; import HerosWithSlide from "~/components/ui/Heros/WithSlide"; import HerosWithImage from "~/components/ui/Heros/WithImage"; import HerosWithSideImage from "~/components/ui/Heros/WithSideImage"; @@ -171,7 +172,7 @@ import SidebarWithAvatar from "~/components/ui/Sidebar/WithAvatar"; // Sections import SectionsAboutMe from "~/components/ui/Sections/AboutMe"; import SectionsFeature from "~/components/ui/Sections/Feature"; -import SectionsProducts from "~/components/ui/Sections/Products"; +import SectionsProductsWithSideLinks from "~/components/ui/Sections/ProductsWithSideLinks"; import SectionsOurTeam from "~/components/ui/Sections/OurTeam"; import SectionsParagraphWithImage from "~/components/ui/Sections/ParagraphWithImage"; // Pricing @@ -236,6 +237,7 @@ export default { NavbarsWithCategories, HerosECommerce, HerosWithNewsletterForm, + HerosCenterContent, HerosWithSlide, HerosWithImage, HerosWithSideImage, @@ -245,7 +247,7 @@ export default { SidebarWithSearch, SectionsAboutMe, SectionsFeature, - SectionsProducts, + SectionsProductsWithSideLinks, SectionsOurTeam, SectionsParagraphWithImage, PricingSimple,