feat(landing): slicing navigation bar

This commit is contained in:
euxzy
2025-06-28 08:38:01 +07:00
parent 302ee37ca1
commit a5bde58bc8
8 changed files with 165 additions and 1 deletions
@@ -0,0 +1,10 @@
import { FC, ReactElement } from 'react';
import { HeroSection } from './_components/hero-section';
export const Components: FC = (): ReactElement => {
return (
<HeroSection />
);
};
export default Components;