Initial commit
This commit is contained in:
22
pages/Home.tsx
Normal file
22
pages/Home.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
import Hero from '../components/Hero';
|
||||
import Benefits from '../components/Benefits';
|
||||
import Services from '../components/Services';
|
||||
import Projects from '../components/Projects';
|
||||
import Laboratories from '../components/Laboratories';
|
||||
import Process from '../components/Process';
|
||||
|
||||
const Home: React.FC = () => {
|
||||
return (
|
||||
<>
|
||||
<Hero />
|
||||
<Benefits />
|
||||
<Services />
|
||||
<Projects />
|
||||
<Laboratories />
|
||||
<Process />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
Reference in New Issue
Block a user