-
Notifications
You must be signed in to change notification settings - Fork 126
fix: Update mentor contact information for NumFOCUS and omegaUp #455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
omkartike
wants to merge
11
commits into
S3DFX-CYBER:main
Choose a base branch
from
omkartike:fix/mentor-contact-info
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+141
β13
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b43d6b4
Add PR validation workflow with contribution rules
S3DFX-CYBER cc8eeac
Fix Contact button: Add contact section and link
omkartike 42e9529
fix: resolve privacy policy button not working
omkartike 04e745b
fix: Update mentor contact information for NumFOCUS and omegaUp
omkartike 5201066
fix: add SRI and ARIA label to privacy.html for SonarCloud
omkartike 04e35f6
Update privacy.html
omkartike 375dcd4
Fix privacy page duplication by redirecting privacy.html and add privβ¦
omkartike 413191c
Fix PR 455 by removing duplicate privacy section from index and makinβ¦
omkartike 431a990
Reduce duplication in PR 455 by removing Tailwind config from privacyβ¦
omkartike 82c871b
chore: remove out-of-scope files, keep only mentor data fix
omkartike b63e847
Merge branch 'main' into fix/mentor-contact-info
omkartike File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,75 @@ | ||
| <!DOCTYPE html> | ||
|
omkartike marked this conversation as resolved.
|
||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="utf-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Privacy Policy | FindMyGSoC</title> | ||
| <meta name="description" content="Privacy Policy for FindMyGSoC - GSoC 2026 Org Finder & Good First Issue Tracker" /> | ||
| <link rel="canonical" href="https://findmygsoc.vercel.app/privacy.html" /> | ||
| <script src="https://cdn.tailwindcss.com?plugins=forms,container-queries" integrity="sha384-1DcZPGeODWbGGjS/i/n4ULX/pEc0DPcKK2WhyuWEmBXRfzOwoVTDQBN9C3C5jJHK" crossorigin="anonymous"></script> | ||
| <style> | ||
| .material-symbols-outlined{font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;vertical-align:middle} | ||
| </style> | ||
| </head> | ||
| <body class="font-sans text-gray-900 bg-gray-50"> | ||
| <nav class="sticky top-0 z-50 bg-white/90 border-b border-zinc-200" aria-label="Main navigation"> | ||
| <div class="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between"> | ||
| <a href="index.html" class="flex items-center gap-2 text-sm font-bold text-zinc-900"> | ||
| <div class="w-8 h-8 rounded bg-gradient-to-br from-orange-600 to-orange-400 flex items-center justify-center"> | ||
| <span class="text-white">G</span> | ||
| </div> | ||
| FindMyGSoC | ||
| </a> | ||
| <div class="flex items-center gap-4 text-sm"> | ||
| <a href="index.html" class="text-zinc-600 hover:text-orange-600 transition-colors">Home</a> | ||
| <a href="index.html#contact" class="text-zinc-600 hover:text-orange-600 transition-colors">Contact</a> | ||
| </div> | ||
| </div> | ||
| </nav> | ||
|
|
||
| <main class="max-w-5xl mx-auto px-6 py-16"> | ||
| <div class="text-center mb-12"> | ||
| <h1 class="text-4xl font-extrabold tracking-tight mb-4">Privacy Policy</h1> | ||
| <p class="text-zinc-600">Last updated: May 2026</p> | ||
| </div> | ||
|
|
||
| <div class="prose prose-lg max-w-none text-zinc-700"> | ||
| <p>FindMyGSoC is committed to protecting your privacy. This Privacy Policy explains how we collect, use, and safeguard your information.</p> | ||
|
|
||
| <h2>Information We Collect</h2> | ||
| <p>We collect information you provide directly and automatically through cookies and analytics.</p> | ||
|
|
||
| <h2>How We Use Information</h2> | ||
| <p>We use information to provide services, improve our website, and communicate with you.</p> | ||
|
|
||
| <h2>Information Sharing</h2> | ||
| <p>We do not sell your information. We may share it with service providers or as required by law.</p> | ||
|
|
||
| <h2>Data Security</h2> | ||
| <p>We implement security measures to protect your information.</p> | ||
|
|
||
| <h2>Contact Us</h2> | ||
| <p>For questions, contact us via our website or GitHub.</p> | ||
| </div> | ||
| </main> | ||
|
|
||
| <footer class="w-full border-t border-zinc-200 bg-zinc-100"> | ||
| <div class="max-w-7xl mx-auto px-6 py-8 flex flex-col md:flex-row justify-between items-center gap-6"> | ||
| <div class="flex items-center gap-2"> | ||
| <div class="w-8 h-8 rounded bg-gradient-to-br from-orange-600 to-orange-400 flex items-center justify-center"> | ||
| <span class="text-white font-bold">G</span> | ||
| </div> | ||
| <div> | ||
| <p class="font-bold text-zinc-900">FindMyGSoC</p> | ||
| <p class="text-xs uppercase tracking-widest text-zinc-500">Β© 2026 S3DFX-CYBER</p> | ||
| </div> | ||
| </div> | ||
| <nav class="flex flex-wrap gap-4" aria-label="Footer navigation"> | ||
| <a href="index.html" class="text-xs font-bold uppercase tracking-widest text-zinc-500 hover:text-orange-600">Home</a> | ||
| <a href="privacy.html" class="text-xs font-bold uppercase tracking-widest text-zinc-500 hover:text-orange-600">Privacy</a> | ||
| <a href="index.html#contact" class="text-xs font-bold uppercase tracking-widest text-zinc-500 hover:text-orange-600">Contact</a> | ||
| </nav> | ||
| </div> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.