mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
15 lines
376 B
TypeScript
15 lines
376 B
TypeScript
import React from "react";
|
|
import { LandingHeroTop } from "./landing-hero-top";
|
|
import { LandingHeroVideo } from "./landing-hero-video";
|
|
import { LandingHeroBottom } from "./landing-hero-bottom";
|
|
|
|
export const LandingHero = () => {
|
|
return (
|
|
<>
|
|
<LandingHeroTop />
|
|
<LandingHeroVideo />
|
|
<LandingHeroBottom />
|
|
</>
|
|
);
|
|
};
|