Spaces:
Build error
Build error
| import Head from 'next/head'; | |
| import Hero from '../components/Hero'; | |
| import Services from '../components/Services'; | |
| import About from '../components/About'; | |
| export default function Home() { | |
| return ( | |
| <> | |
| <Head> | |
| <title>SABMARINE - Marine Technology Solutions</title> | |
| <meta name="description" content="Leading provider of submarine solutions and marine technology services" /> | |
| <link rel="icon" href="/favicon.ico" /> | |
| </Head> | |
| <Hero /> | |
| <Services /> | |
| <About /> | |
| </> | |
| ); | |
| } |