manifold/web/pages/landing-page.tsx
2021-12-02 17:39:11 -06:00

9 lines
150 B
TypeScript

import React from "react";
import { Hero } from "../components/hero";
const LandingPage = () => {
return <Hero />;
};
export default LandingPage;