imseldrith's picture
Add more features
e6ebfa2 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScribbleToScript - Features</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-12">
<div class="max-w-6xl mx-auto">
<h1 class="text-4xl font-bold text-gray-800 mb-4 text-center">Advanced Features</h1>
<p class="text-xl text-gray-600 mb-12 text-center max-w-3xl mx-auto">Explore all the powerful tools to customize your handwriting experience</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<feature-card
icon="type"
title="Multiple Fonts"
description="Choose from 10+ realistic handwriting styles"
icon-color="#6366f1"
icon-bg="#e0e7ff">
<select class="w-full border border-gray-300 rounded-lg px-4 py-2 mt-2">
<option>Standard Handwriting</option>
<option>Neat Print</option>
<option>Casual Script</option>
<option>Formal Cursive</option>
</select>
</feature-card>
<feature-card
icon="droplet"
title="Ink Colors"
description="Customize with various ink colors and textures"
icon-color="#ec4899"
icon-bg="#fce7f3">
<div class="mt-2 flex gap-2 flex-wrap">
<div class="w-8 h-8 rounded-full bg-black cursor-pointer border-2 border-gray-200"></div>
<div class="w-8 h-8 rounded-full bg-blue-600 cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-red-600 cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-green-600 cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-yellow-500 cursor-pointer"></div>
</div>
</feature-card>
<feature-card
icon="paperclip"
title="Paper Styles"
description="Select different paper backgrounds and textures"
icon-color="#8b5cf6"
icon-bg="#ede9fe">
<div class="mt-2 grid grid-cols-3 gap-2">
<div class="h-12 bg-white border cursor-pointer"></div>
<div class="h-12 bg-gray-50 border cursor-pointer"></div>
<div class="h-12 bg-amber-50 border cursor-pointer"></div>
</div>
</feature-card>
<feature-card
icon="download-cloud"
title="Export Options"
description="Save your work in multiple formats"
icon-color="#3b82f6"
icon-bg="#dbeafe">
<div class="mt-2 flex gap-3">
<button class="px-4 py-2 bg-blue-100 text-blue-600 rounded-lg text-sm font-medium">PNG</button>
<button class="px-4 py-2 bg-blue-100 text-blue-600 rounded-lg text-sm font-medium">PDF</button>
<button class="px-4 py-2 bg-blue-100 text-blue-600 rounded-lg text-sm font-medium">SVG</button>
</div>
</feature-card>
<feature-card
icon="share-2"
title="Sharing"
description="Share directly to social media or generate a link"
icon-color="#10b981"
icon-bg="#d1fae5">
<div class="mt-2 flex gap-3">
<button class="px-4 py-2 bg-green-100 text-green-600 rounded-lg text-sm font-medium flex items-center gap-1">
<i data-feather="twitter" class="w-4 h-4"></i> Tweet
</button>
<button class="px-4 py-2 bg-green-100 text-green-600 rounded-lg text-sm font-medium">Copy Link</button>
</div>
</feature-card>
<feature-card
icon="settings"
title="Advanced Settings"
description="Fine-tune your handwriting appearance"
icon-color="#f59e0b"
icon-bg="#fef3c7">
<div class="mt-2 space-y-3">
<div class="flex items-center justify-between">
<span class="text-sm text-gray-600">Letter Spacing</span>
<input type="range" class="w-24">
</div>
<div class="flex items-center justify-between">
<span class="text-sm text-gray-600">Line Height</span>
<input type="range" class="w-24">
</div>
</div>
</feature-card>
<feature-card
icon="bold"
title="Pen Pressure"
description="Simulate natural pen pressure variations"
icon-color="#ef4444"
icon-bg="#fee2e2">
<div class="mt-2 space-y-3">
<div class="flex items-center justify-between">
<span class="text-sm text-gray-600">Pressure Variance</span>
<input type="range" class="w-24">
</div>
<div class="flex items-center gap-2">
<input type="checkbox" id="randomPressure" class="rounded text-red-500">
<label for="randomPressure" class="text-sm text-gray-600">Random variation</label>
</div>
</div>
</feature-card>
<feature-card
icon="layers"
title="Multilingual Support"
description="Supports multiple languages and scripts"
icon-color="#14b8a6"
icon-bg="#ccfbf1">
<div class="mt-2">
<select class="w-full border border-gray-300 rounded-lg px-4 py-2">
<option>English</option>
<option>Spanish</option>
<option>French</option>
<option>German</option>
<option>Japanese</option>
</select>
</div>
</feature-card>
<feature-card
icon="bookmark"
title="Templates"
description="Save and reuse your favorite settings"
icon-color="#8b5cf6"
icon-bg="#ede9fe">
<div class="mt-2 space-y-2">
<button class="w-full px-4 py-2 bg-purple-100 text-purple-600 rounded-lg text-sm font-medium">
Save Current Settings
</button>
<button class="w-full px-4 py-2 bg-white border border-purple-200 text-purple-600 rounded-lg text-sm font-medium">
Load Template
</button>
</div>
</feature-card>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>