manifold/web/pages/landing-page.tsx

8 lines
129 B
TypeScript
Raw Normal View History

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