Initial commit IP

This commit is contained in:
2026-02-10 16:36:26 +05:00
commit 605a5cb028
125 changed files with 8091 additions and 0 deletions

22
pages/Home.tsx Normal file
View 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;