Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---

name: Bug report

about: Create a report to help us improve

title: "\[BUG] "

labels: bug

assignees: ""

---



\*\*Describe the bug\*\*

A clear and concise description of what the bug is.



\*\*To Reproduce\*\*

Steps to reproduce the behavior:

1\. Go to '...'

2\. Click on '...'

3\. Scroll down to '...'

4\. See error



\*\*Expected behavior\*\*

A clear and concise description of what you expected to happen.



\*\*Screenshots\*\*

If applicable, add screenshots to help explain your problem.



\*\*Additional context\*\*

Add any other context about the problem here.



40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---

name: Feature request

about: Suggest an idea for this project

title: "\[FEATURE] "

labels: enhancement

assignees: ""

---



\*\*Is your feature request related to a problem? Please describe.\*\*

A clear and concise description of what the problem is. Ex: I'm always frustrated when \[...]



\*\*Describe the solution you'd like\*\*

A clear and concise description of what you want to happen.



\*\*Describe alternatives you've considered\*\*

A clear and concise description of any alternative solutions or features you've considered.



\*\*Additional context\*\*

Add any other context or screenshots about the feature request here.



17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

## Description
Please include a summary of the changes and the related issue.

Fixes # (issue number)

## Type of change
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation update
- [ ] Other (please describe):

## Checklist
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added tests that prove my fix is effective or that my feature works
2 changes: 1 addition & 1 deletion .github/workflows/closeIssue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
Happy coding!✨ We hope to see you again soon!❣️`;

await github.issues.createComment({ owner, repo, issue_number: number, body: commentBody });
console.log(`Commented on the issue: ${commentBody}.`);
console.log(`Commented on the issue: ${commentBody}.`);# trigger
2 changes: 1 addition & 1 deletion .github/workflows/issueOpen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
Happy Coding! 💖`;

await github.issues.createComment({ owner, repo, issue_number: number, body: commentBody });
console.log(`Commented on the issue: ${commentBody}.`);
console.log(`Commented on the issue: ${commentBody}.`);# trigger
2 changes: 1 addition & 1 deletion .github/workflows/pullReqMerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
Thank you for your contribution and being part of our project! 💫
Keep coding and keep shining! 🌟`;

await github.issues.createComment({ owner, repo, issue_number: prNumber, body: commentBody });
await github.issues.createComment({ owner, repo, issue_number: prNumber, body: commentBody });# trigger
2 changes: 1 addition & 1 deletion .github/workflows/pullReqOpen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
Please ensure your PR follows the contributing guidelines.
Keep contributing and growing! 🌱✨`;

await github.issues.createComment({ owner, repo, issue_number: number, body: commentBody });
await github.issues.createComment({ owner, repo, issue_number: number, body: commentBody });# trigger
1 change: 1 addition & 0 deletions .github/workflows/selfAssign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ jobs:
});

console.log(`Assigned @${assignee} to issue #${issueNumber}`);
# trigger
60 changes: 44 additions & 16 deletions App/src/pages/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,60 @@ const Contact = () => {
<label htmlFor="email" className='form_label text-green-900 font-semibold'>
Your Email
</label>
<input
type="email"
id="email"
placeholder="example123@gmail.com"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'></input>
<input
type="email"
id="email"
placeholder="example123@gmail.com"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'></input>
</div>
<div>
<label htmlFor="phone" className='form_label text-green-900 font-semibold'>
Your Contact Number
</label>
<input
type="phone"
id="phone"
placeholder="+91 1234567890"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'>
</input>
</div>

<div>
<label htmlFor="category" className='form_label text-green-900 font-semibold'>
Category
</label>
<select
id="category"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 bg-white focus:outline-none focus:ring-2 focus:ring-green-700'
defaultValue=""
>
<option value="" disabled>Select a category</option>
<option value="adoption">Adoption Inquiry</option>
<option value="donation">Donation</option>
<option value="support">Technical Support</option>
<option value="general">General Question</option>
</select>
</div>
<div>
<label htmlFor="subject" className='form_label text-green-900 font-semibold'>
Subject
</label>
<input
type="text"
id="subject"
placeholder="Let us know how we can help you"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'></input>
<input
type="text"
id="subject"
placeholder="Let us know how we can help you"
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'></input>
</div>
<div className='sm:col-span-2'>
<label htmlFor="message" className='form_label text-green-900 font-semibold'>
Your Message
</label>
<textarea
rows="6"
type="text"
id="message"
placeholder="Leave a comment..."
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'
<textarea
rows="6"
type="text"
id="message"
placeholder="Leave a comment..."
className='form_input mt-1 w-full border border-green-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-green-700'
/>
</div>
<button type="submit" className='btn rounded sm:w-fit bg-green-700 hover:bg-green-800 text-white px-6 py-2 font-semibold transition duration-300 ease-in-out transform hover:scale-105'>Submit</button>
Expand Down
42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License
Copyright (c) 2025 NAYANIKA MUKHERJEE
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License

Copyright (c) 2025 NAYANIKA MUKHERJEE

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading