CommandPrompt's picture
Make it work. It work be extremely advanced
67f6005 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Script Templates | Teleprompter Factory</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#3B82F6',
},
secondary: {
500: '#10B981',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="max-w-6xl mx-auto">
<h1 class="text-3xl font-bold mb-2">Script Templates</h1>
<p class="text-gray-400 mb-8">Professional templates for various presentation types</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Template Card 1 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Business Presentation</h3>
<span class="bg-blue-500 text-white text-xs px-2 py-1 rounded">Popular</span>
</div>
<p class="text-gray-400 mb-4">Structured template for corporate presentations with introduction, key points, and conclusion.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">5 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('business')">Use Template</button>
</div>
</div>
<!-- Template Card 2 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Product Launch</h3>
<span class="bg-green-500 text-white text-xs px-2 py-1 rounded">New</span>
</div>
<p class="text-gray-400 mb-4">Engaging script structure for unveiling new products with storytelling approach.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">7 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('product')">Use Template</button>
</div>
</div>
<!-- Template Card 3 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Educational Lecture</h3>
</div>
<p class="text-gray-400 mb-4">Academic-friendly template with clear sections for teaching complex topics.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">10 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('education')">Use Template</button>
</div>
</div>
<!-- Template Card 4 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Sales Pitch</h3>
</div>
<p class="text-gray-400 mb-4">Persuasive framework designed to convert prospects into customers effectively.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">4 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('sales')">Use Template</button>
</div>
</div>
<!-- Template Card 5 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Conference Keynote</h3>
</div>
<p class="text-gray-400 mb-4">High-impact structure for captivating large audiences at conferences.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">15 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('keynote')">Use Template</button>
</div>
</div>
<!-- Template Card 6 -->
<div class="bg-gray-800 rounded-xl p-6 border border-gray-700 hover:border-primary-500 transition">
<div class="flex items-start justify-between mb-4">
<h3 class="text-xl font-semibold">Interview Script</h3>
</div>
<p class="text-gray-400 mb-4">Natural conversation flow for television or podcast interviews.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">8 min read</span>
<button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 rounded-lg text-sm" onclick="loadTemplate('interview')">Use Template</button>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
feather.replace();
function loadTemplate(type) {
// In a real implementation, this would load the actual template
alert(`Loading ${type} template. In a full implementation, this would populate your script editor.`);
}
</script>
</body>
</html>