-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
386e1ed
commit af50113
Showing
32 changed files
with
1,176 additions
and
300 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.next | ||
.vscode |
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,5 @@ | ||
{ | ||
"singleQuote": true, | ||
"bracketSpacing": true, | ||
"printWidth": 120 | ||
} |
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
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
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,14 +1,14 @@ | ||
import { NextPage } from 'next' | ||
import { NextPage } from 'next'; | ||
|
||
interface Props {} | ||
|
||
export const metadata = { | ||
title: "Codeforces Leaderboard", | ||
description: "Coded by Shubh Agarwal (https://github.com/ShubhAgarwal-dev)", | ||
} | ||
title: 'Codeforces Leaderboard', | ||
description: 'Coded by Shubh Agarwal (https://github.com/ShubhAgarwal-dev)', | ||
}; | ||
|
||
const Leaderboard: NextPage<Props> = ({}) => { | ||
return <div></div> | ||
} | ||
return <div></div>; | ||
}; | ||
|
||
export default Leaderboard | ||
export default Leaderboard; |
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,9 +1,9 @@ | ||
import { NextPage } from 'next' | ||
import { NextPage } from 'next'; | ||
|
||
interface Props {} | ||
|
||
const Page: NextPage<Props> = ({}) => { | ||
return <div></div> | ||
} | ||
return <div></div>; | ||
}; | ||
|
||
export default Page | ||
export default Page; |
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,20 +1,20 @@ | ||
import { admin_data } from "@/components/Member/admins.types"; | ||
import { admin_data } from '@/components/Member/admins.types'; | ||
|
||
const admin_data_val : admin_data = [ | ||
const admin_data_val: admin_data = [ | ||
{ | ||
name: "Shubh Agarwal", | ||
img: "/Team/xyz.jpg", | ||
email: "", | ||
linkedIn:"https://youtu.be/dQw4w9WgXcQ", | ||
instagram: "https://www.instagram.com/virat.kohli/", | ||
name: 'Shubh Agarwal', | ||
img: '/Team/xyz.jpg', | ||
email: '', | ||
linkedIn: 'https://youtu.be/dQw4w9WgXcQ', | ||
instagram: 'https://www.instagram.com/virat.kohli/', | ||
}, | ||
{ | ||
name: "Saksham Chhimwal", | ||
img: "/Team/xyz.jpg", | ||
email: "", | ||
linkedIn:"https://youtu.be/dQw4w9WgXcQ", | ||
instagram: "https://www.instagram.com/virat.kohli/", | ||
name: 'Saksham Chhimwal', | ||
img: '/Team/xyz.jpg', | ||
email: '', | ||
linkedIn: 'https://youtu.be/dQw4w9WgXcQ', | ||
instagram: 'https://www.instagram.com/virat.kohli/', | ||
}, | ||
] | ||
]; | ||
|
||
export default admin_data_val | ||
export default admin_data_val; |
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
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
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
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
Oops, something went wrong.