OsamaMo commited on
Commit
048c094
·
verified ·
1 Parent(s): 3e48aac

Upload pages/index.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/index.tsx +31 -0
pages/index.tsx ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Head from 'next/head'
2
+ import Header from '../components/Header'
3
+ import Hero from '../components/Hero'
4
+ import About from '../components/About'
5
+ import Projects from '../components/Projects'
6
+ import Services from '../components/Services'
7
+ import Contact from '../components/Contact'
8
+ import Footer from '../components/Footer'
9
+
10
+ export default function Home() {
11
+ return (
12
+ <>
13
+ <Head>
14
+ <title>Margins Developments | Premium Real Estate Development</title>
15
+ <meta name="description" content="Margins Developments - Creating exceptional spaces that inspire and endure. Premium real estate development company." />
16
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
17
+ <link rel="icon" href="/favicon.ico" />
18
+ </Head>
19
+
20
+ <main className="min-h-screen bg-margins-black text-margins-white">
21
+ <Header />
22
+ <Hero />
23
+ <About />
24
+ <Projects />
25
+ <Services />
26
+ <Contact />
27
+ <Footer />
28
+ </main>
29
+ </>
30
+ )
31
+ }