openpanel/documentation/src/refine-theme/landing-hero.tsx
2024-02-05 10:23:04 +01:00

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 />
</>
);
};