+ UniCollab is more than just a platform; it's a gateway to a world where students from different universities/colleges converge to collaborate, innovate, and elevate their projects. Imagine a space where ideas flow freely, where knowledge is shared effortlessly, and where learning transcends classrooms. That's UniCollab for you.
+
+
+
+
Scope of the Project
+
+ To actively contribute to UniCollab, I encourage you to delve into the PROPOSED-AIM file which provides a comprehensive outline of our project's overarching goals and feature set. If you identify features that are needed but not yet implemented (as mostly are), please create an issue outlining the feature request for discussion and implementation. Your input will drive UniCollab's evolution as a dynamic and impactful platform for student collaboration.
+
+
+
+
Tech Stack
+
+
Node.js with Express.js for the server
+
MongoDB for the database (using Mongoose for object modeling)
+
Firebase Authentication for user authentication and authorization
+
Firebase Cloud Functions for serverless backend logic
+
React.js for a dynamic and responsive user interface
+
HTML5, CSS3, JavaScript for elegant and modern design
+
Firebase Hosting for fast and secure web hosting
+
Firebase Realtime Database for real-time data synchronization
+
GitLab CI/CD for automated testing and deployment
+
Docker for efficient and scalable deployment
+
Kubernetes for managing containerized applications
+
AWS for reliable and scalable hosting
+
AWS Lambda for cost-effective and scalable backend services
+
AWS S3 for secure and scalable storage solutions
+
TensorFlow and PyTorch for advanced machine learning capabilities
+
scikit-learn, pandas, NumPy for data manipulation and analysis
+
Docker containers for easy deployment of machine learning models
+
JWT for secure authentication and authorization
+
D3.js or Chart.js for interactive and visually appealing data representation
+
Jest for React.js unit testing, Selenium for end-to-end testing
+
+
+
+
Key Features
+
+
Project Showcase: Showcase your projects and discover what other students are working on.
+
Collaborative Tools: Work together seamlessly with integrated collaboration tools.
+
Knowledge Sharing: Share insights, tips, and tricks with a community passionate about learning.
+
Career Opportunities: Explore internship and job opportunities from our partner organizations.
+
+
+
+
+
Why Choose UniCollab?
+
+
Enhanced Learning: Learn from peers, mentors, and a wealth of shared resources.
+
Networking Opportunities: Connect with students, professionals, and potential employers.
+
Project Visibility: Showcase your projects and gain recognition for your work.
+
Collaboration: Work with a diverse group of students on innovative projects.
+
Career Growth: Discover job and internship opportunities tailored to your skills and interests.
+
Community Support: Be part of a supportive and engaging community.
+
+
+
+
+
Key Benefits
+
+
Knowledge Sharing: Access a wide range of tutorials, articles, and learning materials.
+
Real-Time Collaboration: Use integrated tools for seamless teamwork.
+
Skill Development: Participate in events, workshops, and collaborative projects to enhance your skills.
+
Recognition: Get recognized for your contributions and projects.
+
+
+
+
+ );
+}
+
+export default PortFolio;
diff --git a/src/Components/PortFolio/UniCollab-Bottom.png b/src/Components/PortFolio/UniCollab-Bottom.png
new file mode 100644
index 00000000..1eed7995
Binary files /dev/null and b/src/Components/PortFolio/UniCollab-Bottom.png differ
diff --git a/src/Components/PortFolio/UniCollab-Top.png b/src/Components/PortFolio/UniCollab-Top.png
new file mode 100644
index 00000000..821b4b01
Binary files /dev/null and b/src/Components/PortFolio/UniCollab-Top.png differ
diff --git a/src/Components/PortFolio/logo.png b/src/Components/PortFolio/logo.png
new file mode 100644
index 00000000..f4775550
Binary files /dev/null and b/src/Components/PortFolio/logo.png differ
diff --git a/src/Components/TopContainer.css b/src/Components/TopContainer.css
index 38b05b03..d4edc579 100644
--- a/src/Components/TopContainer.css
+++ b/src/Components/TopContainer.css
@@ -40,7 +40,7 @@
/* Hover effect for nav item links */
.largeview .nav-item a:hover {
color: #cf00a3;
- font-size: 1.05rem;
+ font-size: 1.0rem;
}
/* Input box styles */
diff --git a/src/Components/footer_section/Pricing/pricing.js b/src/Components/footer_section/Pricing/pricing.js
index 9d24436e..aea9f975 100644
--- a/src/Components/footer_section/Pricing/pricing.js
+++ b/src/Components/footer_section/Pricing/pricing.js
@@ -9,7 +9,7 @@ function Pricing() {
-
+
Start your 7 day free trial today
Unlock Advanced Features and Maximize Your Potential with UniCollab Pro.
diff --git a/src/configs/router.js b/src/configs/router.js
index ce133122..139c49c4 100644
--- a/src/configs/router.js
+++ b/src/configs/router.js
@@ -1,4 +1,3 @@
-// router.js
import { createBrowserRouter } from "react-router-dom";
import Container from "../Components/Container";
import Footer from "../Components/Footer";
@@ -13,6 +12,7 @@ import Readmore from "../Components/Readmore";
import Login from "../Components/Login";
import Pricing from "../Components/footer_section/Pricing/pricing";
import MyProjects from "../Components/menu_section/my_projects/MyProjects";
+import PortFolio from "../Components/PortFolio/PortFolio"; // Corrected import for PortFolio component
import NewProject from "../Components/menu_section/new_project/NewProject";
import Error from "../Components/404_page/Error";
import Profiles from "../Components/Profiles";
@@ -66,7 +66,8 @@ const router = createBrowserRouter([
{ path: "/wallet", element: },
{ path: "/delicious", element: },
{ path: "/trending", element: },
- { path: "/forgot", element: }, // Add the ForgotPassword route
+ { path: "/forgot", element: },
+ { path: "/portfolio", element: }, // Corrected path for PortFolio
]);
export default router;