Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions contributors.json
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,15 @@
"bio": "A passionate web developer with a knack for creating interactive applications.",
"github_profile_url": "https://github.com/zeropse",
"project_netlify_link": "https://modern-sidebar.netlify.app/"
},

{
"name": "Sanskriti Suhani",
"occupation": "Web Developer",
"place": "Bangalore, India",
"bio": "A passionate web developer with a knack for creating interactive applications.",
"github_profile_url": "https://github.com/suhanisanskriti28-oss",
"project_netlify_link": "sanskriticalprofilecard.netlify.app"
}
]

Binary file added projects/.DS_Store
Binary file not shown.
Binary file added projects/cards/.DS_Store
Binary file not shown.
Binary file added projects/cards/SansKritiCal/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
203 changes: 203 additions & 0 deletions projects/cards/SansKritiCal/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>

<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Baloo+2:wght@400;700&display=swap"
rel="stylesheet">

<!-- Font Awesome for Social Icons -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>

<style>
/* Background with smooth gradient animation */
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background: linear-gradient(270deg, #ff6b6b, #f94d6a, #4facfe, #00f2fe);
background-size: 800% 800%;
animation: gradientBG 12s ease infinite;
}


@keyframes gradientBG {
0% {
background-position: 0% 50%;
}

50% {
background-position: 100% 50%;
}

100% {
background-position: 0% 50%;
}
}

/* Profile Card */
.card {
background: #fff;
padding: 2.5rem;
border-radius: 25px;
text-align: center;
width: 380px;
max-width: 100%;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.card img {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
border: 4px solid #f94d6a;
}

.card h1 {
font-family: 'Pacifico', cursive;
font-size: 2.4rem;
margin: 0.5rem 0;
color: #222;
}

.card p {
font-family: 'Baloo 2', cursive;
font-size: 1.1rem;
color: #444;
margin: 0.5rem 0 1.8rem;
}

.card button {
background: linear-gradient(45deg, #ff6b6b, #f94d6a);
color: #fff;
border: none;
padding: 12px 25px;
border-radius: 25px;
cursor: pointer;
font-size: 1rem;
transition: transform 0.3s ease, background 0.3s ease;
margin-bottom: 1rem;
}

.card button:hover {
background: linear-gradient(45deg, #f94d6a, #ff6b6b);
transform: scale(1.1);
}

/* Social Buttons */
.social-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 1rem;
}

.social-buttons a {
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
border-radius: 25px;
color: #fff;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-buttons a i {
margin-right: 8px;
}

.social-buttons a:hover {
transform: scale(1.05);
opacity: 0.9;
}

.github-btn {
background: #333;
}

.linkedin-btn {
background: #0077b5;
}

.instagram-btn {
background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* Responsive for Mobile */
@media (max-width: 500px) {
.card {
width: 90%;
padding: 2rem;
}

.card img {
width: 120px;
height: 120px;
}

.card h1 {
font-size: 2rem;
}

.card p {
font-size: 1rem;
}

.card button {
padding: 10px 20px;
font-size: 0.9rem;
}

.social-buttons {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}

.social-buttons a {
font-size: 0.9rem;
padding: 8px 15px;
}
}
</style>
</head>

<body>
<div class="card">
<img src="WhatsApp Image 2025-08-13 at 15.19.45.jpeg" alt="Profile Picture">
<h1>Sanskriti Suhani</h1>
<p>FullStack Developer · Coffee · Photography · Foodie</p>
<button>Follow</button>

<!-- Social Buttons -->
<div class="social-buttons">
<a href="https://github.com/suhanisanskriti28-oss" class="github-btn"><i class="fab fa-github"></i> GitHub</a>
<a href="https://www.linkedin.com/in/sanskriti-suhani-657663278/" class="linkedin-btn"><i
class="fab fa-linkedin"></i> LinkedIn</a>
<a href="https://www.instagram.com/euphoric.snaps" class="instagram-btn"><i class="fab fa-instagram"></i>
Instagram</a>
</div>
</div>
</body>

</html>
2 changes: 1 addition & 1 deletion projects/cards/seobysoumik/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>

Sa
<body>

<div class="card">
Expand Down