manifold/web/pages/landing-page.tsx
2021-12-01 18:22:45 -06:00

10 lines
150 B
TypeScript

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