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 type { NextPage } from 'next'
import Head from 'next/head' import Head from 'next/head'
import React from 'react' import React from 'react'
import { LandingPage } from './landing-page' import LandingPage from './landing-page'
const Home: NextPage = () => { const Home: NextPage = () => {
return ( return (

View File

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