dynrep1-0 / index.html
privateuserh's picture
Add 1 files
158ddf2 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Reputation Score | Content Value Assessment</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4F46E5',
secondary: '#10B981',
dark: '#1F2937',
light: '#F3F4F6',
accent: '#F59E0B',
platinum: '#E5E4E2',
gold: '#FFD700',
silver: '#C0C0C0',
bronze: '#CD7F32'
}
}
}
}
</script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
}
.score-ring {
stroke-dasharray: 440;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}
.social-icon {
transition: all 0.3s ease;
}
.social-icon:hover {
transform: translateY(-5px);
}
.license-tier {
transition: all 0.3s ease;
}
.license-tier:hover {
transform: scale(1.03);
}
.license-tier.active {
border-color: #4F46E5;
box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}
.greek-letter {
font-family: 'Times New Roman', Times, serif;
font-style: italic;
}
.boost-card {
transition: all 0.3s ease;
background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}
.boost-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-8">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-chart-line text-3xl"></i>
<h1 class="text-2xl font-bold">Dynamic Reputation Score</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="hover:text-accent transition">Home</a>
<a href="#" class="hover:text-accent transition">How It Works</a>
<a href="#" class="hover:text-accent transition">Benefits</a>
<a href="#" class="hover:text-accent transition">Pricing</a>
</nav>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="mt-16 mb-20 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Your Content Value, Quantified</h2>
<p class="text-xl max-w-3xl mx-auto mb-8">
Measure your digital reputation across platforms to unlock better crypto loan terms and content monetization opportunities.
</p>
<button class="bg-accent hover:bg-yellow-600 text-white font-bold py-3 px-8 rounded-full transition">
Calculate Your Score Now
</button>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-12">
<!-- Score Dashboard -->
<section class="bg-white rounded-xl shadow-lg p-6 mb-12">
<div class="flex flex-col md:flex-row items-center">
<!-- Score Visualization -->
<div class="w-full md:w-1/3 flex justify-center mb-8 md:mb-0">
<div class="relative w-64 h-64">
<svg class="w-full h-full" viewBox="0 0 160 160">
<circle cx="80" cy="80" r="70" stroke="#E5E7EB" stroke-width="10" fill="none"/>
<circle id="score-ring" class="score-ring" cx="80" cy="80" r="70" stroke="#4F46E5" stroke-width="10" fill="none" stroke-dashoffset="440"/>
</svg>
<div class="absolute inset-0 flex flex-col items-center justify-center">
<div class="flex items-end">
<span id="main-score" class="text-5xl font-bold text-dark">0</span>
<span id="greek-letter" class="greek-letter text-2xl ml-1 mb-1 text-primary"></span>
</div>
<span id="level-title" class="text-gray-500">Novice Creator</span>
</div>
</div>
</div>
<!-- Score Details -->
<div class="w-full md:w-2/3">
<h3 class="text-2xl font-bold text-dark mb-4">Your Digital Reputation Breakdown</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
<div class="bg-light p-4 rounded-lg">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-600">Content Value Score</span>
<span id="content-score" class="font-bold">0</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div id="content-score-bar" class="bg-primary h-2 rounded-full" style="width: 0%"></div>
</div>
</div>
<div class="bg-light p-4 rounded-lg">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-600">Engagement Score</span>
<span id="engagement-score" class="font-bold">0</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div id="engagement-score-bar" class="bg-secondary h-2 rounded-full" style="width: 0%"></div>
</div>
</div>
<div class="bg-light p-4 rounded-lg">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-600">Longevity Score</span>
<span id="longevity-score" class="font-bold">0</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div id="longevity-score-bar" class="bg-accent h-2 rounded-full" style="width: 0%"></div>
</div>
</div>
<div class="bg-light p-4 rounded-lg">
<div class="flex justify-between items-center mb-2">
<span class="text-gray-600">Borrowing Power</span>
<span id="borrowing-power" class="font-bold">$0</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div id="borrowing-power-bar" class="bg-purple-500 h-2 rounded-full" style="width: 0%"></div>
</div>
</div>
</div>
<div class="mb-6 p-4 bg-blue-50 rounded-lg border border-blue-100">
<div class="flex items-start">
<div class="flex-shrink-0 pt-1">
<i class="fas fa-info-circle text-blue-500 text-xl"></i>
</div>
<div class="ml-3">
<h4 class="text-sm font-medium text-blue-800">Licensing Impact</h4>
<p class="text-sm text-blue-700" id="license-impact-text">
Your current licensing activity is not impacting your score. Increase your licensing to boost your reputation and borrowing power.
</p>
</div>
</div>
</div>
<button id="update-btn" class="bg-primary hover:bg-indigo-700 text-white font-bold py-2 px-6 rounded-full transition">
Update My Score
</button>
</div>
</div>
</section>
<!-- Boost Section -->
<section class="bg-white rounded-xl shadow-lg p-8 mb-12">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-purple-100 text-purple-600 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-bolt text-xl"></i>
</div>
<div>
<h2 class="text-3xl font-bold text-dark">Boost Your Score</h2>
<p class="text-gray-600">Annuitize your earnings for stable income verification with unspent.cash</p>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="boost-card border border-gray-200 rounded-xl p-6 cursor-pointer" data-boost="basic">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Basic Stability</h3>
<p class="text-gray-500 text-sm">3-month annuitization</p>
</div>
<div class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-xs font-bold">+5 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 3-month income verification</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Basic unspent.cash integration</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Small boost to reputation</li>
</ul>
<div class="text-center">
<button class="select-boost-btn w-full py-2 px-4 border border-gray-300 rounded-lg hover:bg-gray-50">
Connect to unspent.app
</button>
</div>
</div>
<div class="boost-card border border-gray-200 rounded-xl p-6 cursor-pointer" data-boost="professional">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Professional Stability</h3>
<p class="text-gray-500 text-sm">6-month annuitization</p>
</div>
<div class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-xs font-bold">+15 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 6-month income verification</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Full unspent.cash integration</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Medium boost to reputation</li>
</ul>
<div class="text-center">
<button class="select-boost-btn w-full py-2 px-4 bg-purple-600 text-white rounded-lg hover:bg-purple-700">
Connect to unspent.app
</button>
</div>
</div>
<div class="boost-card border border-gray-200 rounded-xl p-6 cursor-pointer" data-boost="enterprise">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Enterprise Stability</h3>
<p class="text-gray-500 text-sm">12-month annuitization</p>
</div>
<div class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-xs font-bold">+30 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 12-month income verification</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Premium unspent.cash features</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> Large boost to reputation</li>
</ul>
<div class="text-center">
<button class="select-boost-btn w-full py-2 px-4 border border-gray-300 rounded-lg hover:bg-gray-50">
Connect to unspent.app
</button>
</div>
</div>
</div>
<div class="mt-6 bg-purple-50 rounded-lg p-4">
<h3 class="font-bold text-purple-800 mb-2">How Annuitization Boosts Your Score</h3>
<p class="text-purple-700 text-sm">
By connecting your unspent.cash account and annuitizing a portion of your earnings, you demonstrate
stable income streams to lenders. This significantly improves your reputation score by verifying
your ability to repay loans. The longer the annuitization period, the greater the boost to your score.
</p>
</div>
</section>
<!-- Licensing Activity Section -->
<section class="bg-white rounded-xl shadow-lg p-8 mb-12">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-blue-100 text-blue-600 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-file-contract text-xl"></i>
</div>
<div>
<h2 class="text-3xl font-bold text-dark">Licensing Activity</h2>
<p class="text-gray-600">Your content licensing history is a strong indicator of repayment ability</p>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="license-tier border-2 border-gray-200 rounded-xl p-6 cursor-pointer" data-tier="basic">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Basic Licensing</h3>
<p class="text-gray-500 text-sm">Occasional content licensing</p>
</div>
<div class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs font-bold">+15 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 1-5 licenses per year</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Small-scale partnerships</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Standard verification</li>
</ul>
<div class="text-center">
<button class="select-tier-btn w-full py-2 px-4 border border-gray-300 rounded-lg hover:bg-gray-50">
Select Tier
</button>
</div>
</div>
<div class="license-tier border-2 border-gray-200 rounded-xl p-6 cursor-pointer" data-tier="professional">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Professional Licensing</h3>
<p class="text-gray-500 text-sm">Regular content licensing</p>
</div>
<div class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs font-bold">+30 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 6-20 licenses per year</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Medium-scale partnerships</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Enhanced verification</li>
</ul>
<div class="text-center">
<button class="select-tier-btn w-full py-2 px-4 bg-blue-600 text-white rounded-lg hover:bg-blue-700">
Select Tier
</button>
</div>
</div>
<div class="license-tier border-2 border-gray-200 rounded-xl p-6 cursor-pointer" data-tier="enterprise">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="font-bold text-lg">Enterprise Licensing</h3>
<p class="text-gray-500 text-sm">High-volume content licensing</p>
</div>
<div class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs font-bold">+50 pts</div>
</div>
<ul class="text-sm text-gray-600 space-y-2 mb-4">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 20+ licenses per year</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Large-scale partnerships</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> Premium verification</li>
</ul>
<div class="text-center">
<button class="select-tier-btn w-full py-2 px-4 border border-gray-300 rounded-lg hover:bg-gray-50">
Select Tier
</button>
</div>
</div>
</div>
<div class="bg-blue-50 rounded-lg p-4">
<h3 class="font-bold text-blue-800 mb-2">Why Licensing Matters</h3>
<p class="text-blue-700 text-sm">
Content licensing demonstrates your ability to generate consistent revenue from your digital assets.
This is a strong indicator of repayment ability for crypto loans, making it a heavily weighted factor
in your reputation score. Higher licensing tiers unlock better loan terms and increased borrowing limits.
</p>
</div>
</section>
<!-- Social Media Integration -->
<section class="mb-12">
<h2 class="text-3xl font-bold text-dark mb-8 text-center">Connect Your Social Profiles</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="social-card bg-white p-6 rounded-xl shadow-md text-center cursor-pointer" data-platform="youtube">
<div class="social-icon bg-red-100 text-red-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fab fa-youtube text-3xl"></i>
</div>
<h3 class="font-bold mb-2">YouTube</h3>
<p class="text-gray-500 text-sm">Subscribers & Watch Time</p>
</div>
<div class="social-card bg-white p-6 rounded-xl shadow-md text-center cursor-pointer" data-platform="twitter">
<div class="social-icon bg-blue-100 text-blue-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fab fa-twitter text-3xl"></i>
</div>
<h3 class="font-bold mb-2">Twitter</h3>
<p class="text-gray-500 text-sm">Followers & Engagement</p>
</div>
<div class="social-card bg-white p-6 rounded-xl shadow-md text-center cursor-pointer" data-platform="instagram">
<div class="social-icon bg-pink-100 text-pink-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fab fa-instagram text-3xl"></i>
</div>
<h3 class="font-bold mb-2">Instagram</h3>
<p class="text-gray-500 text-sm">Followers & Engagement</p>
</div>
<div class="social-card bg-white p-6 rounded-xl shadow-md text-center cursor-pointer" data-platform="tiktok">
<div class="social-icon bg-black text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fab fa-tiktok text-3xl"></i>
</div>
<h3 class="font-bold mb-2">TikTok</h3>
<p class="text-gray-500 text-sm">Followers & Views</p>
</div>
</div>
</section>
<!-- Metrics Input -->
<section class="bg-white rounded-xl shadow-lg p-8 mb-12">
<h2 class="text-3xl font-bold text-dark mb-6">Enhance Your Score</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Left Column -->
<div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Content Uploads (per month)</label>
<input type="range" id="content-uploads" min="0" max="50" value="5" class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
<div class="flex justify-between text-sm text-gray-500 mt-1">
<span>0</span>
<span>10</span>
<span>20</span>
<span>30</span>
<span>40</span>
<span>50+</span>
</div>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Content Performance (avg. views)</label>
<select id="content-performance" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-primary focus:border-primary">
<option value="100">Under 100</option>
<option value="1000">100-1,000</option>
<option value="10000" selected>1,000-10,000</option>
<option value="100000">10,000-100,000</option>
<option value="1000000">100,000-1M</option>
<option value="10000000">1M+</option>
</select>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Community Building</label>
<div class="flex space-x-4">
<button class="community-btn flex-1 py-2 px-4 border rounded-lg" data-value="0">None</button>
<button class="community-btn flex-1 py-2 px-4 border rounded-lg bg-primary text-white" data-value="1">Some</button>
<button class="community-btn flex-1 py-2 px-4 border rounded-lg" data-value="2">Strong</button>
</div>
</div>
</div>
<!-- Right Column -->
<div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Curation Participation</label>
<div class="flex items-center">
<input type="checkbox" id="curation-check" class="w-5 h-5 text-primary rounded focus:ring-primary">
<label for="curation-check" class="ml-2 text-gray-700">Actively curate content</label>
</div>
<div class="flex items-center mt-2">
<input type="checkbox" id="moderation-check" class="w-5 h-5 text-primary rounded focus:ring-primary">
<label for="moderation-check" class="ml-2 text-gray-700">Community moderation</label>
</div>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Years of Activity</label>
<div class="flex items-center space-x-2">
<button id="years-minus" class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center">
<i class="fas fa-minus"></i>
</button>
<span id="years-value" class="text-xl font-bold">3</span>
<button id="years-plus" class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center">
<i class="fas fa-plus"></i>
</button>
<span class="text-gray-500 ml-2">years</span>
</div>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Verified Revenue Streams</label>
<div class="flex flex-wrap gap-2">
<button class="revenue-btn py-1 px-3 border rounded-full text-sm" data-stream="ads">
<i class="fas fa-ad mr-1"></i> Ad Revenue
</button>
<button class="revenue-btn py-1 px-3 border rounded-full text-sm" data-stream="sponsorships">
<i class="fas fa-handshake mr-1"></i> Sponsorships
</button>
<button class="revenue-btn py-1 px-3 border rounded-full text-sm" data-stream="merch">
<i class="fas fa-tshirt mr-1"></i> Merchandise
</button>
<button class="revenue-btn py-1 px-3 border rounded-full text-sm" data-stream="donations">
<i class="fas fa-donate mr-1"></i> Donations
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section class="mb-12">
<h2 class="text-3xl font-bold text-dark mb-8 text-center">Unlock New Opportunities</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="w-12 h-12 gradient-bg text-white rounded-full flex items-center justify-center mb-4">
<i class="fas fa-coins text-xl"></i>
</div>
<h3 class="font-bold text-xl mb-2">Better Crypto Loan Terms</h3>
<p class="text-gray-600">Higher reputation scores qualify you for lower interest rates and higher borrowing limits.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="w-12 h-12 gradient-bg text-white rounded-full flex items-center justify-center mb-4">
<i class="fas fa-handshake text-xl"></i>
</div>
<h3 class="font-bold text-xl mb-2">Premium Partnerships</h3>
<p class="text-gray-600">Brands seek out creators with high reputation scores for collaborations.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="w-12 h-12 gradient-bg text-white rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-pie text-xl"></i>
</div>
<h3 class="font-bold text-xl mb-2">Content Monetization</h3>
<p class="text-gray-600">Access exclusive monetization options based on your content value.</p>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="mb-12">
<h2 class="text-3xl font-bold text-dark mb-8 text-center">Trusted by Creators</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">Tech YouTuber</p>
</div>
</div>
<p class="text-gray-700">
"After documenting my licensing deals, my reputation score jumped 25 points and I qualified for a crypto loan at 3% lower interest. The impact was immediate!"
</p>
<div class="flex mt-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-gray-500 text-sm">Photography Influencer</p>
</div>
</div>
<p class="text-gray-700">
"The licensing verification process was simple, and the boost to my borrowing power was substantial. I was able to secure funding for new equipment within days."
</p>
<div class="flex mt-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-chart-line mr-2"></i> Dynamic Reputation
</h3>
<p class="text-gray-400">
Quantifying your digital footprint to unlock financial opportunities and content monetization.
</p>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-700 rounded-full flex items-center justify-center hover:bg-primary transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 rounded-full flex items-center justify-center hover:bg-primary transition">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 rounded-full flex items-center justify-center hover:bg-primary transition">
<i class="fab fa-telegram"></i>
</a>
</div>
</div>
</div>
<div class="pt-6 border-t border-gray-800 text-center text-gray-400">
<p>© 2023 Dynamic Reputation Score. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script>
document.addEventListener('DOMContentLoaded', function() {
// Initialize scores
let scores = {
main: 0,
content: 0,
engagement: 0,
longevity: 0,
borrowing: 0,
licenseTier: null,
revenueStreams: [],
boostTier: null
};
// Greek letters for levels
const greekLetters = ['α', 'β', 'γ', 'δ', 'ε', 'ζ', 'η', 'θ', 'ι', 'κ', 'λ', 'μ', 'ν', 'ξ', 'ο', 'π', 'ρ', 'σ', 'τ', 'υ', 'φ', 'χ', 'ψ', 'ω'];
// Level titles
const levelTitles = [
"Novice Creator",
"Emerging Creator",
"Established Creator",
"Professional Creator",
"Influential Creator",
"Premium Creator",
"Elite Creator",
"Top-Tier Creator"
];
// Social media connections
const socialCards = document.querySelectorAll('.social-card');
socialCards.forEach(card => {
card.addEventListener('click', function() {
this.classList.toggle('ring-2');
this.classList.toggle('ring-primary');
this.classList.toggle('pulse');
calculateScore();
});
});
// License tiers
const licenseTiers = document.querySelectorAll('.license-tier');
const selectTierBtns = document.querySelectorAll('.select-tier-btn');
licenseTiers.forEach(tier => {
tier.addEventListener('click', function() {
// Remove active class from all tiers
licenseTiers.forEach(t => t.classList.remove('active', 'border-blue-500'));
// Add active class to clicked tier
this.classList.add('active', 'border-blue-500');
// Update selected tier
scores.licenseTier = this.dataset.tier;
// Update button states
selectTierBtns.forEach(btn => {
btn.classList.remove('bg-blue-600', 'text-white');
btn.classList.add('border', 'border-gray-300');
});
// Highlight the selected button
const btn = this.querySelector('.select-tier-btn');
btn.classList.add('bg-blue-600', 'text-white');
btn.classList.remove('border', 'border-gray-300');
// Update license impact text
updateLicenseImpactText();
calculateScore();
});
});
// Boost tiers
const boostCards = document.querySelectorAll('.boost-card');
const selectBoostBtns = document.querySelectorAll('.select-boost-btn');
boostCards.forEach(card => {
card.addEventListener('click', function() {
// Remove active class from all boost cards
boostCards.forEach(c => c.classList.remove('border-purple-500'));
// Add active class to clicked card
this.classList.add('border-purple-500');
// Update selected boost tier
scores.boostTier = this.dataset.boost;
// Update button states
selectBoostBtns.forEach(btn => {
btn.classList.remove('bg-purple-600', 'text-white');
btn.classList.add('border', 'border-gray-300');
});
// Highlight the selected button
const btn = this.querySelector('.select-boost-btn');
btn.classList.add('bg-purple-600', 'text-white');
btn.classList.remove('border', 'border-gray-300');
calculateScore();
});
});
// Community buttons
const communityBtns = document.querySelectorAll('.community-btn');
communityBtns.forEach(btn => {
btn.addEventListener('click', function() {
communityBtns.forEach(b => b.classList.remove('bg-primary', 'text-white'));
this.classList.add('bg-primary', 'text-white');
calculateScore();
});
});
// Revenue stream buttons
const revenueBtns = document.querySelectorAll('.revenue-btn');
revenueBtns.forEach(btn => {
btn.addEventListener('click', function() {
const stream = this.dataset.stream;
const index = scores.revenueStreams.indexOf(stream);
if (index === -1) {
// Add stream
scores.revenueStreams.push(stream);
this.classList.add('bg-blue-100', 'border-blue-500', 'text-blue-800');
} else {
// Remove stream
scores.revenueStreams.splice(index, 1);
this.classList.remove('bg-blue-100', 'border-blue-500', 'text-blue-800');
}
calculateScore();
});
});
// Years counter
const yearsValue = document.getElementById('years-value');
const yearsMinus = document.getElementById('years-minus');
const yearsPlus = document.getElementById('years-plus');
yearsMinus.addEventListener('click', function() {
let value = parseInt(yearsValue.textContent);
if (value > 0) {
yearsValue.textContent = value - 1;
calculateScore();
}
});
yearsPlus.addEventListener('click', function() {
let value = parseInt(yearsValue.textContent);
yearsValue.textContent = value + 1;
calculateScore();
});
// Checkboxes
document.getElementById('curation-check').addEventListener('change', calculateScore);
document.getElementById('moderation-check').addEventListener('change', calculateScore);
// Sliders and selects
document.getElementById('content-uploads').addEventListener('input', calculateScore);
document.getElementById('content-performance').addEventListener('change', calculateScore);
// Update button
document.getElementById('update-btn').addEventListener('click', function() {
// Simulate loading
this.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Calculating...';
setTimeout(() => {
calculateScore();
this.textContent = 'Update My Score';
}, 1000);
});
// Update license impact text
function updateLicenseImpactText() {
const impactText = document.getElementById('license-impact-text');
if (!scores.licenseTier) {
impactText.textContent = "Your current licensing activity is not impacting your score. Increase your licensing to boost your reputation and borrowing power.";
return;
}
const tierMap = {
'basic': "Your Basic Licensing tier adds 15 points to your score, demonstrating initial repayment capacity.",
'professional': "Your Professional Licensing tier adds 30 points, showing strong repayment ability and unlocking better loan terms.",
'enterprise': "Your Enterprise Licensing tier adds 50 points, qualifying you for premium lending options with the best rates."
};
impactText.textContent = tierMap[scores.licenseTier];
}
// Calculate score function
function calculateScore() {
// Content score (uploads + performance)
const uploads = parseInt(document.getElementById('content-uploads').value);
const performance = parseInt(document.getElementById('content-performance').value);
scores.content = Math.min(100, uploads * 0.5 + Math.log10(performance) * 10);
// Engagement score (social media + community)
const connectedSocials = document.querySelectorAll('.social-card.ring-2').length;
const communityValue = document.querySelector('.community-btn.bg-primary')?.dataset.value || 0;
scores.engagement = Math.min(100, connectedSocials * 15 + communityValue * 20);
// Longevity score (years + curation)
const years = parseInt(yearsValue.textContent);
const curationChecked = document.getElementById('curation-check').checked;
const moderationChecked = document.getElementById('moderation-check').checked;
scores.longevity = Math.min(100, years * 8 + (curationChecked ? 20 : 0) + (moderationChecked ? 15 : 0));
// License bonus (weighted heavily for repayment ability)
let licenseBonus = 0;
if (scores.licenseTier === 'basic') licenseBonus = 15;
if (scores.licenseTier === 'professional') licenseBonus = 30;
if (scores.licenseTier === 'enterprise') licenseBonus = 50;
// Boost bonus (annuitization)
let boostBonus = 0;
if (scores.boostTier === 'basic') boostBonus = 5;
if (scores.boostTier === 'professional') boostBonus = 15;
if (scores.boostTier === 'enterprise') boostBonus = 30;
// Revenue streams bonus
const revenueBonus = scores.revenueStreams.length * 5;
// Main score (weighted average with heavy emphasis on licensing and boost)
scores.main = Math.min(100,
(scores.content * 0.25) +
(scores.engagement * 0.15) +
(scores.longevity * 0.15) +
(licenseBonus * 1.5) + // 1.5x weight for licensing
(boostBonus * 1.2) + // 1.2x weight for boost
revenueBonus
);
// Borrowing power (based on main score with multiplier for licensing and boost)
let borrowingMultiplier = 1;
if (scores.licenseTier === 'professional') borrowingMultiplier = 1.5;
if (scores.licenseTier === 'enterprise') borrowingMultiplier = 2;
if (scores.boostTier === 'professional') borrowingMultiplier *= 1.2;
if (scores.boostTier === 'enterprise') borrowingMultiplier *= 1.5;
scores.borrowing = Math.floor(Math.pow(scores.main, 1.5) * 100 * borrowingMultiplier);
// Update UI
updateScoreUI();
}
// Update UI with scores
function updateScoreUI() {
// Main score
const roundedScore = Math.round(scores.main);
document.getElementById('main-score').textContent = roundedScore;
document.getElementById('score-ring').style.strokeDashoffset = 440 - (440 * scores.main / 100);
// Determine Greek letter and level
const levelIndex = Math.min(Math.floor(roundedScore / 15), greekLetters.length - 1);
const titleIndex = Math.min(Math.floor(roundedScore / 15), levelTitles.length - 1);
document.getElementById('greek-letter').textContent = greekLetters[levelIndex];
document.getElementById('level-title').textContent = levelTitles[titleIndex];
// Sub-scores
document.getElementById('content-score').textContent = Math.round(scores.content);
document.getElementById('content-score-bar').style.width = `${scores.content}%`;
document.getElementById('engagement-score').textContent = Math.round(scores.engagement);
document.getElementById('engagement-score-bar').style.width = `${scores.engagement}%`;
document.getElementById('longevity-score').textContent = Math.round(scores.longevity);
document.getElementById('longevity-score-bar').style.width = `${scores.longevity}%`;
// Borrowing power
document.getElementById('borrowing-power').textContent = `$${scores.borrowing.toLocaleString()}`;
document.getElementById('borrowing-power-bar').style.width = `${Math.min(100, scores.borrowing / 10000 * 100)}%`;
}
// Initial calculation
calculateScore();
// Auto-select professional tier by default
const professionalTier = document.querySelector('.license-tier[data-tier="professional"]');
if (professionalTier) {
professionalTier.click();
}
// Auto-select professional boost by default
const professionalBoost = document.querySelector('.boost-card[data-boost="professional"]');
if (professionalBoost) {
professionalBoost.click();
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/dynrep1-0" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>