File tree 4 files changed +45
-12
lines changed
4 files changed +45
-12
lines changed Original file line number Diff line number Diff line change 45
45
The team will review your PR shortly. If you have any questions, feel free to ask here!
46
46
Happy Coding! 🚀
47
47
48
+ # Add labels to the pull request
49
+ - name : Add Labels to Pull Request
50
+ if : ${{ github.event_name == 'pull_request' }}
51
+ uses : actions-ecosystem/action-add-labels@v1
52
+ with :
53
+ github_token : ${{ secrets.GITHUB_TOKEN }}
54
+ labels : ' Under Review'
55
+ number : ${{ github.event.pull_request.number }}
56
+
57
+ # Request a review for the pull request
58
+ - name : Request Review on Pull Request
59
+ if : ${{ github.event_name == 'pull_request' }}
60
+ uses : actions/github-script@v6
61
+ with :
62
+ script : |
63
+ github.rest.pulls.requestReviewers({
64
+ owner: context.repo.owner,
65
+ repo: context.repo.repo,
66
+ pull_number: context.payload.pull_request.number,
67
+ reviewers: ['yashksaini-coder']
68
+ })
69
+
70
+ # Add a comment to the issue
48
71
- name : Add Comment on Issue
49
72
if : ${{ github.event_name == 'issues' }}
50
73
uses : peter-evans/create-or-update-comment@v3
Original file line number Diff line number Diff line change @@ -116,6 +116,22 @@ Below is a list of all the amazing contributors who have helped make this projec
116
116
<p align =" center " > <a href =" https://github.com/yashksaini-coder/Leetcode-Journal/graphs/contributors " > <img src =" https://contrib.rocks/image?repo=yashksaini-coder/Leetcode-Journal " /> </a > </p >
117
117
118
118
##
119
+ <<<<<<< HEAD
120
+ =======
121
+
122
+ # Project Contributers:
123
+ ### Thank you everyone for your contributions! 🙏 We hope to see you contribute even more in the future. 🚀👨💻👩💻
124
+
125
+
126
+ <p align =" center " >
127
+ <a href =" https://github.com/yashksaini-coder/Leetcode-Journal/graphs/contributors " >
128
+ <img src="https://contributors-img.web.app/image?repo=yashksaini-coder/Leetcode-Journal" alt="Contributors"/>
129
+ </a >
130
+ </p >
131
+
132
+
133
+ ---
134
+ >>>>>>> e9d5817b131855e47dd0b52d0c40e8546a339662
119
135
120
136
* Connect with me on GitHub: [ yashksaini-coder] ( https://github.com/yashksaini-coder ) *
121
137
Original file line number Diff line number Diff line change @@ -19,21 +19,15 @@ const Navbar = ({ userId }: { userId?: string }) => {
19
19
</ span >
20
20
</ div >
21
21
< div className = "hidden lg:flex space-x-6" >
22
- < Link href = "# " className = "hover:text-purple-400 " >
22
+ < Link href = "/ " className = "hover:text-purple-400 " >
23
23
Home
24
24
</ Link >
25
- < Link href = "#" className = "hover:text-purple-400 " >
26
- Features
27
- </ Link >
28
- < Link href = "#" className = "hover:text-purple-400 " >
25
+ < Link href = "/learn-more" className = "hover:text-purple-400 " >
29
26
How it Works
30
27
</ Link >
31
- < Link href = "# " className = "hover:text-purple-400 " >
28
+ < Link href = "/FAQ " className = "hover:text-purple-400 " >
32
29
FAQs
33
30
</ Link >
34
- < Link href = "#" className = "hover:text-purple-400 " >
35
- Blog
36
- </ Link >
37
31
</ div >
38
32
< div className = "hidden lg:flex items-center space-x-4" >
39
33
{ userId ? (
@@ -42,7 +36,7 @@ const Navbar = ({ userId }: { userId?: string }) => {
42
36
onClick = { ( ) =>
43
37
supabase . auth
44
38
. signOut ( )
45
- . then ( ( ) => router . push ( "/auth/signin " ) )
39
+ . then ( ( ) => router . push ( "/" ) )
46
40
}
47
41
>
48
42
Sign Out
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ import { Menu, X } from 'lucide-react'
9
9
10
10
const navItems = [
11
11
{ href : "/" , label : "Home" } ,
12
- { href : "/ features" , label : "Features" } ,
13
- { href : "/how-it-works " , label : "How it Works" } ,
12
+ { href : "# features" , label : "Features" } ,
13
+ { href : "/learn-more " , label : "How it Works" } ,
14
14
{ href : "/FAQ" , label : "FAQs" } ,
15
15
{ href : "/blog" , label : "Blog" } ,
16
16
]
You can’t perform that action at this time.
0 commit comments