- import React from 'react';
- import Hero from '../components/Hero';
- import ProductSection from '../components/ProductSection';
- import About from '../components/About';
- const HomePage: React.FC = () => {
- return (
- <>
- <Hero />
- <ProductSection />
- <About />
- </>
- );
- };
- export default HomePage;
|