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,7 @@
export function HeroSection() {
return (
<section className="relative w-full bg-primary-50 md:py-32 lg:py-40">
<div>Hero Section</div>
</section>
)
}
@@ -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;