14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { AboutBanner, Story, WhyChooseUs } from "@/components/pages/about";
|
|
import { Statistics } from "@/components/pages/home";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="mb-0">
|
|
<AboutBanner />
|
|
<Story />
|
|
<Statistics/>
|
|
<WhyChooseUs/>
|
|
</div>
|
|
);
|
|
}
|