Svenson1974 commited on
Commit
d757a04
·
verified ·
1 Parent(s): 4f966c5

Upload pages/index.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/index.js +20 -0
pages/index.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Head from 'next/head';
2
+ import Hero from '../components/Hero';
3
+ import Services from '../components/Services';
4
+ import About from '../components/About';
5
+
6
+ export default function Home() {
7
+ return (
8
+ <>
9
+ <Head>
10
+ <title>SABMARINE - Marine Technology Solutions</title>
11
+ <meta name="description" content="Leading provider of submarine solutions and marine technology services" />
12
+ <link rel="icon" href="/favicon.ico" />
13
+ </Head>
14
+
15
+ <Hero />
16
+ <Services />
17
+ <About />
18
+ </>
19
+ );
20
+ }