File size: 6,966 Bytes
67f6005 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
<!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> |