Skip to content

Commit 939e4fc

Browse files
committed
feat: Update footer component by removing Twitter link and adding GitHub contribution link; add example environment variables file
1 parent b5db0bd commit 939e4fc

File tree

3 files changed

+34
-9
lines changed

3 files changed

+34
-9
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ We welcome contributions from the community! Here's how you can help:
167167

168168
- **SRKR Coding Club** - For the initiative and support
169169
- **Open Source Community** - For the amazing tools and libraries
170-
- **Contributors** - For making this project better
171170

172171
## Support
173172

client-test/src/components/footer.tsx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Linkedin, Instagram, User, Mail } from 'lucide-react';
2-
import { FaXTwitter, FaYoutube, FaWhatsapp } from 'react-icons/fa6';
2+
import { FaYoutube, FaWhatsapp } from 'react-icons/fa6';
33
import { Link } from 'react-router-dom';
44

55
const Footer = () => {
@@ -32,13 +32,6 @@ const Footer = () => {
3232
>
3333
<Linkedin className="w-6 h-6" />
3434
</a>
35-
<a
36-
className="text-muted-500 hover:text-blue-600 transition-transform hover:scale-110 duration-300"
37-
href="https://twitter.com/srkr_coding_club"
38-
aria-label="Twitter"
39-
>
40-
<FaXTwitter className="w-6 h-6" />
41-
</a>
4235
<a
4336
className="text-muted-500 hover:text-pink-500 transition-transform hover:scale-110 duration-300"
4437
href="https://www.instagram.com/srkr_coding_club?igsh=MWRoZGd5OHM0ZnZ4ZA=="
@@ -85,6 +78,16 @@ const Footer = () => {
8578
Terms & Conditions
8679
</Link>
8780
</li>
81+
<li>
82+
<a
83+
href="https://github.com/codevoid048/codequest"
84+
target="_blank"
85+
rel="noopener noreferrer"
86+
className="text-muted-500 hover:text-primary transition-colors duration-300"
87+
>
88+
Contribute
89+
</a>
90+
</li>
8891
</ul>
8992
</div>
9093

server/.env.example

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
MONGO_URI=your_mongodb_connection_string
2+
BASE_URL=http://localhost:5000
3+
4+
CLIENT_URL=http://localhost:5173
5+
6+
JWT_SECRET=jwt_secret_key
7+
EMAIL_USER=email_user
8+
EMAIL_PASS=email_pass
9+
10+
11+
GOOGLE_CLIENT_ID=google_client_id
12+
GOOGLE_CLIENT_SECRET=google_client_secret
13+
14+
OAUTH_GITHUB_CLIENT_ID=oauth_github_client_id
15+
OAUTH_GITHUB_CLIENT_SECRET=oauth_github_client_secret
16+
17+
RESET_TOKEN_EXPIRY=900000
18+
19+
CLOUDINARY_CLOUD_NAME=cloudinary_cloud_name
20+
CLOUDINARY_API_KEY=cloudinary_api_key
21+
CLOUDINARY_API_SECRET=cloudinary_api_secret
22+
CLOUDINARY_URL=cloudinary_url
23+
REDIS_URL=redis_url

0 commit comments

Comments
 (0)