Fix build error

This commit is contained in:
jahooma 2021-12-01 18:22:45 -06:00
parent dc038eae0a
commit 220df309c3
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import type { NextPage } from 'next'
import Head from 'next/head'
import React from 'react'
import { LandingPage } from './landing-page'
import LandingPage from './landing-page'
const Home: NextPage = () => {
return (

View File

@ -1,8 +1,10 @@
import React from 'react'
import { Hero } from '../components/hero'
export const LandingPage = () => {
const LandingPage = () => {
return (
<Hero />
)
}
}
export default LandingPage