Files
tanami/src/Pages/Home.jsx

25 lines
585 B
React
Raw Normal View History

2024-06-21 12:37:32 +05:30
import React, { useEffect } from 'react'
2024-06-20 20:14:37 +05:30
import Hero from '../Components/Hero'
import InvestmentPlatform from '../Components/InvestmentPlatform'
import Advertising from '../Components/Advertising'
2024-06-21 12:37:32 +05:30
import HowItWorks from '../Components/HowItWorks'
import Faq from '../Components/Faq'
import UseScrollToTop from '../Components/UseScrollToTop'
2024-06-20 12:26:20 +05:30
const Home = () => {
2024-06-21 12:37:32 +05:30
// UseScrollToTop();
useEffect(() => {
window.scrollTo(0, 0);
}, []);
2024-06-20 12:26:20 +05:30
return (
2024-06-20 20:14:37 +05:30
<>
<Hero/>
<InvestmentPlatform />
2024-06-21 12:37:32 +05:30
<HowItWorks />
<Faq />
2024-06-20 20:14:37 +05:30
<Advertising />
</>
2024-06-20 12:26:20 +05:30
)
}
export default Home