1 import React from 'react';
2 import NavBar from '../components/NavBar';
3 import Description from '../components/Description';
4 import Service from './Service';
5 export default function Home() {
6 return (
7 <div>
8 <React.Fragment>
9 <div className=
"h-[100vh] px-40 py-5 bg-[#012478]"|
>
10 <NavBar/>
11 <Description></Description>
12 </div>
13 <Service></Service>
13 <React.Fragment/>
14 </div>
15 );
16 }