Files
ignum/app/[locale]/home/page.tsx
nabijonovdavronbek619@gmail.com 29e06be337 text font fixed
2026-01-28 12:10:55 +05:00

26 lines
385 B
TypeScript

import {
AboutUs,
Banner,
Blog,
Line,
OurService,
Statistics,
Testimonial,
Video,
} from "@/components/pages/home";
export default function Home() {
return (
<main className="bg-slate-950">
<Banner />
<Statistics />
<AboutUs />
<Line />
<Blog />
<Video />
<OurService />
{/* <Testimonial /> */}
</main>
);
}