mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-14 12:14:34 +01:00
30 lines
856 B
JavaScript
30 lines
856 B
JavaScript
import React from "react";
|
|
import "../public/style/style.scss";
|
|
import Head from "next/head";
|
|
import Footer from "../components/footer/footer";
|
|
import Banner from "../components/home/banner";
|
|
import Header from "../components/header/header";
|
|
import About from "../components/home/about";
|
|
import Skills from "../components/home/passions";
|
|
import Process from "../components/home/process";
|
|
import Contact from "../components/home/contact";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<div className="home">
|
|
<Head>
|
|
<link rel="shortcut icon" href="/favicon/favicon.ico" />
|
|
<title>Arthur Danjou | Accueil</title>
|
|
</Head>
|
|
<Header />
|
|
<Banner />
|
|
<About />
|
|
<Skills />
|
|
<Process />
|
|
<Contact />
|
|
<Footer />
|
|
</div>
|
|
)
|
|
};
|
|
|
|
export default HomePage; |