13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
import { LandingHero } from "@/components/landing-hero";
|
|
import { LandingNavbar } from "@/components/landing-navbar";
|
|
|
|
const LandingPage = () => {
|
|
return (
|
|
<div className="h-full">
|
|
<LandingNavbar />
|
|
<LandingHero />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LandingPage; |