24 lines
359 B
TypeScript
24 lines
359 B
TypeScript
import {
|
|
AboutUs,
|
|
Banner,
|
|
Line,
|
|
OurService,
|
|
Statistics,
|
|
Testimonial,
|
|
Video,
|
|
} from "@/components/pages/home";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="bg-slate-950 mb-90">
|
|
<Banner />
|
|
<Statistics />
|
|
<AboutUs />
|
|
<Video />
|
|
<OurService />
|
|
<Testimonial />
|
|
<Line/>
|
|
</main>
|
|
);
|
|
}
|