diff --git a/README.md b/README.md index 265496f..6ff747d 100644 --- a/README.md +++ b/README.md @@ -1 +1,23 @@ -###Arthurdanjou.fr \ No newline at end of file +#### **Pages :** + +- Accueil +- About +- Blog +- Environnement +- Contact +--- +- Showcase a faire quand le site est en ligne +- Service (Dev, conseil) + +--- +#ShowCase +- Nom du client +- Ce que j'ai fait +- Illustration + +### Autres +- Effet style avec l'hover +- Day/Night + +-> Services sous process +-> Work au lieu de contact \ No newline at end of file diff --git a/components/services/services.js b/components/services/services.js new file mode 100644 index 0000000..79f53fb --- /dev/null +++ b/components/services/services.js @@ -0,0 +1,13 @@ +import React from 'react'; + +const Services = () => { + return ( +
+ Services +
+ ) +} + +export default Services; + +//TODO renvoie mail si offre introuvable \ No newline at end of file diff --git a/components/work/work.js b/components/work/work.js new file mode 100644 index 0000000..0b2fa3c --- /dev/null +++ b/components/work/work.js @@ -0,0 +1,11 @@ +import React from 'react'; + +const Work = () => { + return ( +
+ Travail +
+ ) +} + +export default Work; \ No newline at end of file diff --git a/pages/services.js b/pages/services.js new file mode 100644 index 0000000..a02b801 --- /dev/null +++ b/pages/services.js @@ -0,0 +1,28 @@ +import React from "react"; +import "../public/style/style.scss"; +import Head from "next/head"; +import Header from "../components/header/header"; +import Footer from "../components/footer/footer"; +import Template from "../components/template/template"; +import Services from "../components/services/services"; + +const WorkPage = () => { + return ( +
+ + Arthur Danjou | Mon Travail + +
+ +
+ ) +} + +export default WorkPage; \ No newline at end of file diff --git a/pages/work.js b/pages/work.js index 6228bda..9698a95 100644 --- a/pages/work.js +++ b/pages/work.js @@ -4,6 +4,7 @@ import Head from "next/head"; import Header from "../components/header/header"; import Footer from "../components/footer/footer"; import Template from "../components/template/template"; +import Work from "../components/work/work"; const WorkPage = () => { return ( @@ -15,9 +16,9 @@ const WorkPage = () => {