File size: 8,213 Bytes
0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac e6ebfa2 0d187ac |
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
<!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> |