Skip to content

Commit f1a1ef3

Browse files
committed
update
1 parent d33fc55 commit f1a1ef3

File tree

2 files changed

+33
-7
lines changed

2 files changed

+33
-7
lines changed

src/Page/Home.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const TechFeatures = () => {
4545
</a>
4646

4747
<a
48-
href="/resources"
48+
href="/Resources"
4949
className="feature-card block rounded-lg bg-gray-800 p-6 shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
5050
>
5151
<div className="border border-transparent transition duration-300 hover:border-blue-500">
@@ -75,7 +75,7 @@ const TechFeatures = () => {
7575
</a>
7676

7777
<a
78-
href="/ideas-submission"
78+
href="/IdeaSubmission"
7979
className="feature-card block rounded-lg bg-gray-800 p-6 shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
8080
>
8181
<div className="border border-transparent transition duration-300 hover:border-blue-500">
@@ -85,7 +85,7 @@ const TechFeatures = () => {
8585
</a>
8686

8787
<a
88-
href="/portfolio-ideas"
88+
href="/PortfolioIdeas"
8989
className="feature-card block rounded-lg bg-gray-800 p-6 shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
9090
>
9191
<div className="border border-transparent transition duration-300 hover:border-blue-500">
@@ -95,7 +95,7 @@ const TechFeatures = () => {
9595
</a>
9696

9797
<a
98-
href="/portfolio-building"
98+
href="/PortfolioBuilder"
9999
className="feature-card block rounded-lg bg-gray-800 p-6 shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
100100
>
101101
<div className="border border-transparent transition duration-300 hover:border-blue-500">
@@ -105,7 +105,7 @@ const TechFeatures = () => {
105105
</a>
106106

107107
<a
108-
href="/resume-building"
108+
href="/ResumeBuilder"
109109
className="feature-card block rounded-lg bg-gray-800 p-6 shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
110110
>
111111
<div className="border border-transparent transition duration-300 hover:border-blue-500">
@@ -116,11 +116,11 @@ const TechFeatures = () => {
116116
</div>
117117

118118
<a
119-
href="/add-features"
119+
href="/https://github.com/codeaashu/DevDisplay"
120120
className="feature-card mt-6 block rounded-lg bg-gray-800 p-6 text-center shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
121121
>
122122
<div className="border border-transparent transition duration-300 hover:border-blue-500">
123-
<h3 className="mb-4 text-2xl font-semibold">Want to Add Features?</h3>
123+
<h3 className="mb-4 text-2xl font-semibold">Want to Add New Features?</h3>
124124
<p>Suggest new features you'd love to see and help shape the tech community.</p>
125125
</div>
126126
</a>

src/Page/PortfolioIdeas.jsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import React from 'react';
2+
3+
const ProjectsPage = () => {
4+
return (
5+
<div className="min-h-screen bg-gray-100 p-4">
6+
<header className="bg-blue-600 p-4 text-white">
7+
<h1 className="text-2xl font-bold">
8+
This is the Portfolio Ideas page - Want to Build this page as a contributer
9+
</h1>
10+
</header>
11+
<h1 className="text-2xl font-bold">Features</h1>
12+
<h1>
13+
Add a features in this page where developer can showcase their portfolio - Develoepr first add their portfolio
14+
through the open source contribution and then the portfolio are showcasing here
15+
</h1>
16+
<hr />
17+
<h1 className="text-2xl font-bold">Take help by this 👇🏻</h1>
18+
<h1>
19+
Project adding inspiration --- https://portfolio-ideas.vercel.app/ --- and thier source code ---
20+
https://github.com/Evavic44/portfolio-ideas
21+
</h1>
22+
</div>
23+
);
24+
};
25+
26+
export default ProjectsPage;

0 commit comments

Comments
 (0)