feat(landing): slicing navigation bar
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user