diff --git a/app/about/page.jsx b/app/about/page.jsx new file mode 100644 index 0000000..6e5db78 --- /dev/null +++ b/app/about/page.jsx @@ -0,0 +1,20 @@ +import React from "react"; +import Image from "next/image"; + + +function About() { + return ( +
+

About me

+ +
+ + + + + + + ); +} + +export default About; diff --git a/app/page.js b/app/page.js index 6740d3d..b85c06b 100644 --- a/app/page.js +++ b/app/page.js @@ -1,8 +1,20 @@ +import Image from "next/image"; +import CLAYZANE from "../images/CLAYZANE.png" +import React from 'react'; + export default function Home() { return (
-
- + + + + + + + + +
); diff --git a/images/CLAYZANE.png b/images/CLAYZANE.png new file mode 100644 index 0000000..6355d4d Binary files /dev/null and b/images/CLAYZANE.png differ