diff --git a/src/App.jsx b/src/App.jsx index bb36e69..39db37d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -10,6 +10,7 @@ import AntiProtected from './components/AntiProtected' import Protected from './components/Protected' import ProjectDetails from './pages/ProjectDetails' import CreateProfile from './pages/CreateProfile' +import MyCollaborations from './pages/MyCollaborations' function App() { diff --git a/src/assets/CollaborateTabImage.png b/src/assets/CollaborateTabImage.png new file mode 100644 index 0000000..6ebe678 Binary files /dev/null and b/src/assets/CollaborateTabImage.png differ diff --git a/src/assets/Profileimage.png b/src/assets/Profileimage.png new file mode 100644 index 0000000..a501fc0 Binary files /dev/null and b/src/assets/Profileimage.png differ diff --git a/src/assets/profilecover.png b/src/assets/profilecover.png new file mode 100644 index 0000000..68c91ea Binary files /dev/null and b/src/assets/profilecover.png differ diff --git a/src/components/CollaborateTab.jsx b/src/components/CollaborateTab.jsx new file mode 100644 index 0000000..686166f --- /dev/null +++ b/src/components/CollaborateTab.jsx @@ -0,0 +1,32 @@ +import React from 'react' +import Cover from './../assets/CollaborateTabImage.png' +import {Card, CardFooter, Image} from "@nextui-org/react"; +import {Avatar} from "@nextui-org/react"; + +function CollaborateTab() { + return ( + + + Project Cover Image Loading + + +
+ +
+
+
+

Project Title

+

Project Description

+
+
+
+
+ ) +} + +export default CollaborateTab \ No newline at end of file diff --git a/src/pages/MyCollaborations.jsx b/src/pages/MyCollaborations.jsx new file mode 100644 index 0000000..d7cacd5 --- /dev/null +++ b/src/pages/MyCollaborations.jsx @@ -0,0 +1,28 @@ +import React from 'react' +import {Input} from "@nextui-org/react"; +import CollaborateTab from '../components/CollaborateTab'; + +function MyCollaborations() { + return ( +
+ +
+ + < CollaborateTab/> + < CollaborateTab/> + < CollaborateTab/> + < CollaborateTab/> + < CollaborateTab/> + < CollaborateTab/> + +
+
+ ); +} + +export default MyCollaborations \ No newline at end of file diff --git a/src/pages/MyProfile.jsx b/src/pages/MyProfile.jsx index bf4f5b8..828153a 100644 --- a/src/pages/MyProfile.jsx +++ b/src/pages/MyProfile.jsx @@ -1,8 +1,55 @@ import React from 'react' +import ProfileImage from './../assets/Profileimage.png' +import {Card, CardHeader, CardBody, CardFooter, Avatar, Button} from "@nextui-org/react"; function MyProfile() { return ( -
MyProfile
+
+
+ + + +
+

Profile Name

+
Profile Tagline
+
+
+ + + + +

+ I'm Jane Hong, and I recently graduated with an +advanced diploma from Smith secondary school. +I'm seeking an internship where I can apply my skills +in content creation and increase my experience +in digital marketingI'm Jane Hong, and I recently graduated with an +advanced diploma from Smith secondary school. +I'm seeking an internship where I can apply my skills +in content creation and increase my experience +in digital marketingI'm Jane Hong, and I recently graduated with an +advanced diploma from Smith secondary school. +I'm seeking an internship where I can apply my skills +in content creation and increase my experience +in digital marketing +

+
+ + +

Skills

+
HTML, CSS, JavaScript, Knowledge of Frameworks and Libraries, Version control, Cross-browser and device testing, +Web performance optimization (WPO)
+ +
+ +
+
+
) }