mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-14 12:14:34 +01:00
17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
import React from "react";
|
|
import "../public/style/style.scss";
|
|
import Head from "next/head";
|
|
import Header from "../components/header/header";
|
|
|
|
const AboutPage = () => {
|
|
return (
|
|
<div className="about">
|
|
<Head>
|
|
<title>Arthur Danjou | A propos</title>
|
|
</Head>
|
|
<Header />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AboutPage; |