vidscript-wizard / index.html
Escapingmatrixtoday's picture
Create me a TikTok and youtiube transcript creator software so I can be able to copy and paste any TikTok link and youri
c0b52b1 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumLedger Pro | Forensic Suite</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981',
dark: '#1E293B',
light: '#F8FAFC'
}
}
}
}
</script>
<style>
.vanta-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
opacity: 0.3;
}
.content-wrapper {
position: relative;
z-index: 1;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
</style>
</head>
<body class="bg-dark text-light min-h-screen">
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<div id="vanta-bg" class="vanta-bg"></div>
<div class="content-wrapper container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex justify-between items-center mb-12">
<div class="flex items-center space-x-2">
<i data-feather="bar-chart-2" class="text-primary w-8 h-8"></i>
<h1 class="text-3xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
QuantumLedger Pro
</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="hover:text-primary transition">Dashboard</a>
<a href="#" class="hover:text-primary transition">Workspace</a>
<a href="#" class="hover:text-primary transition">Documentation</a>
<a href="#" class="hover:text-primary transition">Support</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section class="glass-card rounded-xl p-8 mb-12">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-4">Forensic Financial Analysis Suite</h2>
<p class="text-xl mb-8 opacity-90">
Elite Tax Analysis Workspace for comprehensive document processing, party mapping, and CPA-ready reporting.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg font-medium transition">
Start New Analysis
</button>
<button class="bg-secondary hover:bg-secondary/90 text-white px-6 py-3 rounded-lg font-medium transition">
Upload Documents
</button>
</div>
</div>
</section>
<!-- Warning Banner -->
<div class="glass-card border-l-4 border-yellow-500 p-4 mb-12">
<div class="flex items-start">
<i data-feather="alert-triangle" class="text-yellow-500 mr-3 mt-1"></i>
<p class="font-medium">
FOR CPA/ATTORNEY REVIEW — NOT TAX OR LEGAL ADVICE. All outputs are advisory only and require professional review.
</p>
</div>
</div>
<!-- Features Grid -->
<section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-primary/20 p-3 rounded-full mr-4">
<i data-feather="upload" class="text-primary w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Document Ingestion</h3>
</div>
<p class="opacity-80">
Upload PDFs, DOCX, bank statements, and financial documents for automated processing and analysis.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-secondary/20 p-3 rounded-full mr-4">
<i data-feather="search" class="text-secondary w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Structured Extraction</h3>
</div>
<p class="opacity-80">
Advanced parsers identify parties, amounts, dates, and financial terms across document types.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-purple-500/20 p-3 rounded-full mr-4">
<i data-feather="git-merge" class="text-purple-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Party Mapping</h3>
</div>
<p class="opacity-80">
Visual relationship graph showing connections between entities, documents, and transactions.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-pink-500/20 p-3 rounded-full mr-4">
<i data-feather="divide" class="text-pink-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Fractionalization</h3>
</div>
<p class="opacity-80">
Heuristic analysis to estimate potential fractional reserve transactions with confidence scoring.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-yellow-500/20 p-3 rounded-full mr-4">
<i data-feather="shield" class="text-yellow-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Insurance Analysis</h3>
</div>
<p class="opacity-80">
Estimate insured values and claim potential based on document evidence and public data.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-green-500/20 p-3 rounded-full mr-4">
<i data-feather="file-text" class="text-green-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">CPA Bundles</h3>
</div>
<p class="opacity-80">
Generate complete packages with recommendations, forms, and evidence for professional review.
</p>
</div>
</section>
<!-- CTA Section -->
<section class="glass-card rounded-xl p-8 text-center">
<h3 class="text-2xl font-bold mb-4">Ready to Begin Your Analysis?</h3>
<p class="mb-6 max-w-2xl mx-auto opacity-90">
Upload your documents to start the forensic financial examination process and generate CPA-ready reports.
</p>
<button class="bg-gradient-to-r from-primary to-secondary text-white px-8 py-4 rounded-lg font-medium hover:opacity-90 transition">
Launch Elite Tax Workspace
</button>
</section>
</main>
<!-- Footer -->
<footer class="mt-16 pt-8 border-t border-gray-700">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i data-feather="bar-chart-2" class="text-primary w-6 h-6"></i>
<span class="font-medium">QuantumLedger Pro</span>
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-primary transition">Terms</a>
<a href="#" class="hover:text-primary transition">Privacy</a>
<a href="#" class="hover:text-primary transition">Security</a>
<a href="#" class="hover:text-primary transition">Contact</a>
</div>
</div>
<p class="text-center mt-8 opacity-70 text-sm">
© 2023 QuantumLedger Pro | Forensic Suite. All outputs require professional review.
</p>
</footer>
</div>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: "#3B82F6",
backgroundColor: "#1E293B",
size: 0.8
});
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>