Fix build error
This commit is contained in:
parent
dc038eae0a
commit
220df309c3
|
@ -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 (
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue
Block a user