18 lines
445 B
TypeScript
18 lines
445 B
TypeScript
import { Hero } from "@/components/hero";
|
|
import { VideoEditor } from "@/components/video-editor";
|
|
import { Features } from "@/components/features";
|
|
import { HowItWorks } from "@/components/how-it-works";
|
|
import { Footer } from "@/components/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Hero />
|
|
<VideoEditor />
|
|
<Features />
|
|
<HowItWorks />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|