Web approach - basic look and feel done

This commit is contained in:
2026-08-29 21:52:11 +05:30
parent 364961c9de
commit 372c2bc14d
71 changed files with 2209 additions and 1044 deletions

View File

@@ -1,38 +1,95 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
For more details:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A new Flutter project.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="KIFI - Modern Financial Ledger & Jewellery Business Suite">
<!-- iOS meta tags & icons -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="kifi_app">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="KIFI">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>kifi_app</title>
<title>KIFI - Financial Ledger & Jewellery ERP</title>
<link rel="manifest" href="manifest.json">
<style>
body {
margin: 0;
padding: 0;
background-color: #0b0e14;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
overflow: hidden;
}
.splash-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.splash-logo {
width: 64px;
height: 64px;
border-radius: 16px;
background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%);
box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 28px;
font-weight: bold;
animation: pulse 2s infinite ease-in-out;
}
.splash-title {
color: #ffffff;
font-size: 20px;
font-weight: 800;
letter-spacing: 2px;
margin-top: 18px;
opacity: 0.9;
}
.splash-sub {
color: #8892b0;
font-size: 12px;
letter-spacing: 0.5px;
margin-top: 6px;
}
.spinner {
margin-top: 28px;
width: 32px;
height: 32px;
border: 3px solid rgba(212, 175, 55, 0.2);
border-radius: 50%;
border-top-color: #D4AF37;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
</style>
</head>
<body>
<div class="splash-container">
<div class="splash-logo">💎</div>
<div class="splash-title">KIFI</div>
<div class="splash-sub">Financial Ledger & Jewellery ERP</div>
<div class="spinner"></div>
</div>
<script src="flutter_bootstrap.js" async></script>
</body>
</html>