mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 15:31:21 +00:00
13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { Hero } from "@/components/landing/hero";
|
|
import { Features } from "@/components/landing/features";
|
|
import { Cta } from "@/components/landing/cta";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="overflow-x-hidden max-w-screen">
|
|
<Hero />
|
|
<Features />
|
|
<Cta />
|
|
</div>
|
|
);
|
|
}
|