From c41c00c0086ebe6454a567a5c91db14cd86f0e7e Mon Sep 17 00:00:00 2001 From: Tushar Surve Date: Sat, 20 Apr 2024 08:28:52 +0530 Subject: [PATCH] [test] : New Sections Added --- src/components/About.js | 9 +++++++++ src/components/Contact.js | 9 +++++++++ src/components/Experience.js | 9 +++++++++ src/components/Work.js | 9 +++++++++ 4 files changed, 36 insertions(+) create mode 100644 src/components/About.js create mode 100644 src/components/Contact.js create mode 100644 src/components/Experience.js create mode 100644 src/components/Work.js diff --git a/src/components/About.js b/src/components/About.js new file mode 100644 index 0000000..184c11c --- /dev/null +++ b/src/components/About.js @@ -0,0 +1,9 @@ +import React from "react"; + +const About = () => { + return ( + <> +

About

+ ); +} +export default About; \ No newline at end of file diff --git a/src/components/Contact.js b/src/components/Contact.js new file mode 100644 index 0000000..7b81aee --- /dev/null +++ b/src/components/Contact.js @@ -0,0 +1,9 @@ +import React from "react"; + +const Contact = () => { + return ( + <> +

Contact

+ ); +} +export default Contact; \ No newline at end of file diff --git a/src/components/Experience.js b/src/components/Experience.js new file mode 100644 index 0000000..fd95f10 --- /dev/null +++ b/src/components/Experience.js @@ -0,0 +1,9 @@ +import React from "react"; + +const Experience = () => { + return ( + <> +

Experience

+ ); +} +export default Experience; \ No newline at end of file diff --git a/src/components/Work.js b/src/components/Work.js new file mode 100644 index 0000000..24fe4dd --- /dev/null +++ b/src/components/Work.js @@ -0,0 +1,9 @@ +import React from "react"; + +const Work = () => { + return ( + <> +

Work

+ ); +} +export default Work; \ No newline at end of file