Svenson1974's picture
Upload pages/index.js with huggingface_hub
d757a04 verified
raw
history blame contribute delete
529 Bytes
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 />
</>
);
}