manifold/web/pages/landing-page.tsx

10 lines
150 B
TypeScript
Raw Normal View History

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