13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
|
|
import HeroLanding from "@/components/sections/hero-landing";
|
|
import PreviewLanding from "@/components/sections/preview-landing";
|
|
|
|
export default function IndexPage() {
|
|
return (
|
|
<>
|
|
<HeroLanding />
|
|
<PreviewLanding />
|
|
</>
|
|
);
|
|
}
|