manifold/web/pages/landing-page.tsx

9 lines
150 B
TypeScript
Raw Normal View History

2021-12-02 23:39:11 +00:00
import React from "react";
import { Hero } from "../components/hero";
2021-12-02 00:22:45 +00:00
const LandingPage = () => {
2021-12-02 23:39:11 +00:00
return <Hero />;
};
2021-12-02 00:22:45 +00:00
2021-12-02 23:39:11 +00:00
export default LandingPage;