You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
560 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/Navbar";
  3. import Footer from "@/components/_App/Footer";
  4. import PageBanner from '@/components/Common/PageBanner';
  5. import OurFeatures from '@/components/Features/OurFeatures';
  6. import SingleFeatures from '@/components/Features/SingleFeatures';
  7. const Features = () => {
  8. return (
  9. <>
  10. <Navbar />
  11. <PageBanner pageTitle="Features" />
  12. <OurFeatures />
  13. <SingleFeatures />
  14. <Footer />
  15. </>
  16. )
  17. }
  18. export default Features;