-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
91cd5ec
commit 24fb688
Showing
1 changed file
with
21 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
import Head from "next/head"; | ||
import Image from "next/image"; | ||
import Navbar from "./components/navbar"; | ||
import Hero from "./components/hero"; | ||
import Goal from "./components/goal"; | ||
import Services from "./components/services"; | ||
import Team from "./components/team"; | ||
import Testimonials from "./components/testimonials"; | ||
import Contact from "./components/contact"; | ||
import Footer from "./components/footer"; | ||
import Head from 'next/head'; | ||
import { Metadata } from 'next'; | ||
import Navbar from './components/navbar'; | ||
import Hero from './components/hero'; | ||
import Goal from './components/goal'; | ||
import Services from './components/services'; | ||
import Team from './components/team'; | ||
import Testimonials from './components/testimonials'; | ||
import Contact from './components/contact'; | ||
import Footer from './components/footer'; | ||
|
||
const Home = () => { | ||
return ( | ||
<div className="flex min-h-screen flex-col py-2"> | ||
<Head> | ||
<title>Create Next App</title> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<Metadata> | ||
<title>My Page Title</title> | ||
<link rel="icon" href="/favicon.ico" /> | ||
{/* Add any additional metadata tags here */} | ||
</Metadata> | ||
</Head> | ||
|
||
<Navbar /> | ||
<main className="relative flex-1 lg:container text-center p-0 mx-auto overflow-x-hidden overflow-auto"> | ||
<Hero /> | ||
<Goal /> | ||
<Services /> | ||
<Testimonials /> | ||
<Team /> | ||
<Contact/> | ||
<Contact /> | ||
</main> | ||
<Footer/> | ||
<Footer /> | ||
</div> | ||
); | ||
}; | ||
export default Home; | ||
|
||
export default Home; |