techiesandesh.com Ads.txt file
<script type="text/javascript">
var gk_isXlsx = false;
var gk_xlsxFileLookup = {};
var gk_fileData = {};
function filledCell(cell) {
return cell !== '' && cell != null;
}
function loadFileData(filename) {
if (gk_isXlsx && gk_xlsxFileLookup[filename]) {
try {
var workbook = XLSX.read(gk_fileData[filename], { type: 'base64' });
var firstSheetName = workbook.SheetNames[0];
var worksheet = workbook.Sheets[firstSheetName];
// Convert sheet to JSON to filter blank rows
var jsonData = XLSX.utils.sheet_to_json(worksheet, { header: 1, blankrows: false, defval: '' });
// Filter out blank rows (rows where all cells are empty, null, or undefined)
var filteredData = jsonData.filter(row => row.some(filledCell));
// Heuristic to find the header row by ignoring rows with fewer filled cells than the next row
var headerRowIndex = filteredData.findIndex((row, index) =>
row.filter(filledCell).length >= filteredData[index + 1]?.filter(filledCell).length
);
// Fallback
if (headerRowIndex === -1 || headerRowIndex > 25) {
headerRowIndex = 0;
}
// Convert filtered JSON back to CSV
var csv = XLSX.utils.aoa_to_sheet(filteredData.slice(headerRowIndex)); // Create a new sheet from filtered array of arrays
csv = XLSX.utils.sheet_to_csv(csv, { header: 1 });
return csv;
} catch (e) {
console.error(e);
return "";
}
}
return gk_fileData[filename] || "";
}
</script><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sandesh Jangam - Full-Stack Developer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
.fade-in { opacity: 0; animation: fadeIn 1s ease-in forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: scale(1.1); }
</style>
</head>
<body class="bg-gray-50 text-gray-900 flex items-center justify-center min-h-screen">
<section class="bg-white p-8 md:p-12 rounded-lg shadow-sm max-w-2xl mx-auto text-center">
<img src="sandeshjangam.jpg" alt="Sandesh Jangam" class="w-24 h-24 md:w-32 md:h-32 rounded-full mx-auto mb-4 object-cover fade-in" style="animation-delay: 0.2s;">
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 fade-in" style="animation-delay: 0.4s;">Sandesh Jangam</h1>
<p class="text-lg text-gray-600 mt-2 fade-in" style="animation-delay: 0.6s;">🧘 Clear mind. Bold ideas. Real talk.</p>
<p class="text-lg text-gray-600 mt-1 fade-in" style="animation-delay: 0.8s;">⌨️ Full-stack Developer | Problem Solver | Developer turned Content Creator</p>
<div class="flex justify-center mt-6 space-x-4 fade-in" style="animation-delay: 1s;">
<a href="https://in.linkedin.com/in/sandeshjangam" target="_blank" class="text-gray-600 hover:text-blue-600 hover-scale"><i class="fab fa-linkedin text-2xl"></i></a>
<a href="https://x.com/sandesh055" target="_blank" class="text-gray-600 hover:text-blue-600 hover-scale"><i class="fab fa-x text-2xl"></i></a>
<a href="https://github.com/sandeshjangam" target="_blank" class="text-gray-600 hover:text-blue-600 hover-scale"><i class="fab fa-github text-2xl"></i></a>
<a href="https://www.instagram.com/techiesandesh/" target="_blank" class="text-gray-600 hover:text-blue-600 hover-scale"><i class="fab fa-instagram text-2xl"></i></a>
<a href="https://profiles.wordpress.org/sandesh055/" target="_blank" class="text-gray-600 hover:text-blue-600 hover-scale"><i class="fab fa-wordpress text-2xl"></i></a>
</div>
</section>
</body>
</html>