2025-03-13 02:03:13 +07:00
|
|
|
import { FC, ReactElement } from 'react';
|
2025-06-28 08:38:01 +07:00
|
|
|
import { HeroSection } from './_components/hero-section';
|
2025-03-13 02:03:13 +07:00
|
|
|
|
|
|
|
|
export const Components: FC = (): ReactElement => {
|
2025-06-28 08:38:01 +07:00
|
|
|
return (
|
|
|
|
|
<HeroSection />
|
|
|
|
|
);
|
2025-03-13 02:03:13 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Components;
|