-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added internship page [GSSoC'23]] #410
Open
brohithkr
wants to merge
2
commits into
amupedia2021:master
Choose a base branch
from
brohithkr:internship
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
let i = 0; | ||
const internshipData = [ | ||
{ | ||
"id": i++, | ||
"image": "", | ||
"title": "Software Engineering", | ||
"date": "12 August 2023", | ||
"applyNow": "https://example.com/apply1", | ||
"description": "This internship offers hands-on experience in software engineering, working on cutting-edge projects with a talented team. Apply now to gain valuable skills and contribute to innovative solutions." | ||
}, | ||
{ | ||
"id": i++, | ||
"image": "", | ||
"title": "Marketing", | ||
"date": "10 September 2023", | ||
"applyNow": "https://example.com/apply2", | ||
"description": "Join our marketing team and assist in creating engaging campaigns, analyzing market trends, and implementing strategies. Apply now to gain practical marketing experience and make a real impact." | ||
}, | ||
{ | ||
"id": i++, | ||
"image": "", | ||
"title": "Graphic Design", | ||
"date": "11 October 2023", | ||
"applyNow": "https://example.com/apply3", | ||
"description": "Work closely with our design team to create visually appealing graphics for various projects. Develop your design skills and contribute to exciting design initiatives. Apply now to showcase your creativity!" | ||
} | ||
]; | ||
|
||
export default internshipData; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
import Head from "next/head"; | ||
import Footer from "components/common/Footer"; | ||
import Header from "components/common/Header/Header"; | ||
import OppCard from "components/Opportunities/oppCard"; | ||
import styles from "@styles/oppCard.module.css"; | ||
import Link from "node_modules/next/link"; | ||
import GoToTop from "components/GoToTop"; | ||
import internshipData from "/data/internshipData"; | ||
|
||
const Index = (dataOpp) => { | ||
const Index = () => { | ||
return ( | ||
<div> | ||
<GoToTop /> | ||
<Head> | ||
<title>Internships | Amupedia</title> | ||
<meta name="description" content="Check out our blog posts." /> | ||
</Head> | ||
<Header | ||
image={"/images/about/about_bg.svg"} | ||
text={"Opportunities"} | ||
></Header> | ||
|
||
<article className={styles.mainBody}> | ||
{ | ||
dataOpp.result.result.map((data,index)=>( | ||
<Link href={`/opportunities/${index}`} key={index}> | ||
<a href={`/opportuities/${index}`}> | ||
<OppCard key={data.id} data={data} /> | ||
internshipData.map((data)=>( | ||
<Link href={`/opportunities/${data.id}`} key={data.id}> | ||
<a href={`/opportuities/${data.id}`}> | ||
<OppCard title={data.title} date={data.date} image={data.image} /> | ||
</a> | ||
</Link> | ||
) | ||
|
@@ -29,13 +38,3 @@ const Index = (dataOpp) => { | |
}; | ||
|
||
export default Index; | ||
|
||
export const getServerSideProps = async () => { | ||
const data = await fetch("http://localhost:3000/api/opportunities/fetchOpportunities"); | ||
const result = await data.json(); | ||
return { | ||
props: { | ||
result | ||
} | ||
} | ||
} | ||
Comment on lines
-32
to
-41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why? please see the api...if there may be some problem |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for starting card we can have these... but we have to fetch it live... could you please see if any api available. other wise we will populate data from the database.