Skip to content

Commit d7bc49c

Browse files
committed
Dev branch commit
2 parents 0d3ee6e + e9d5817 commit d7bc49c

File tree

4 files changed

+45
-12
lines changed

4 files changed

+45
-12
lines changed

.github/workflows/autoComment.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,29 @@ jobs:
4545
The team will review your PR shortly. If you have any questions, feel free to ask here!
4646
Happy Coding! 🚀
4747
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
4871
- name: Add Comment on Issue
4972
if: ${{ github.event_name == 'issues' }}
5073
uses: peter-evans/create-or-update-comment@v3

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,22 @@ Below is a list of all the amazing contributors who have helped make this projec
116116
<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>
117117

118118
##
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
119135
120136
*Connect with me on GitHub: [yashksaini-coder](https://github.com/yashksaini-coder)*
121137

components/header.tsx

+4-10
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,15 @@ const Navbar = ({ userId }: { userId?: string }) => {
1919
</span>
2020
</div>
2121
<div className="hidden lg:flex space-x-6">
22-
<Link href="#" className="hover:text-purple-400 ">
22+
<Link href="/" className="hover:text-purple-400 ">
2323
Home
2424
</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 ">
2926
How it Works
3027
</Link>
31-
<Link href="#" className="hover:text-purple-400 ">
28+
<Link href="/FAQ" className="hover:text-purple-400 ">
3229
FAQs
3330
</Link>
34-
<Link href="#" className="hover:text-purple-400 ">
35-
Blog
36-
</Link>
3731
</div>
3832
<div className="hidden lg:flex items-center space-x-4">
3933
{userId ? (
@@ -42,7 +36,7 @@ const Navbar = ({ userId }: { userId?: string }) => {
4236
onClick={() =>
4337
supabase.auth
4438
.signOut()
45-
.then(() => router.push("/auth/signin"))
39+
.then(() => router.push("/"))
4640
}
4741
>
4842
Sign Out

components/navbar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { Menu, X } from 'lucide-react'
99

1010
const navItems = [
1111
{ 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" },
1414
{ href: "/FAQ", label: "FAQs" },
1515
{ href: "/blog", label: "Blog" },
1616
]

0 commit comments

Comments
 (0)