HomePage.tsx 317 B

12345678910111213141516
  1. import React from 'react';
  2. import Hero from '../components/Hero';
  3. import ProductSection from '../components/ProductSection';
  4. import About from '../components/About';
  5. const HomePage: React.FC = () => {
  6. return (
  7. <>
  8. <Hero />
  9. <ProductSection />
  10. <About />
  11. </>
  12. );
  13. };
  14. export default HomePage;