Files
imphnen-frontend-service/apps/dimentorin/src/app/(public)/(home)/page.tsx
T

11 lines
220 B
TypeScript
Raw Normal View History

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;