- React + Vite + TypeScript + Tailwind + shadcn/ui - AI crop engine (Google Gemini 2.5 Flash) + local edge-detection engine - Pixel size outputs with configurable dimensions per ratio - Import/export config (backward compatible with old Python SmartCrop configs) - Crop editor with fixed-frame zoom/pan - ZIP export with multi-size scaling - Montserrat font, #FFC407 gold theme Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
667 B
HTML
17 lines
667 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>SmartCrop — AI Image Cropper</title>
|
|
<meta name="description" content="AI-powered multi-ratio image cropping tool" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|