another step for constructing base project

This commit is contained in:
hamid
2026-06-17 22:53:49 +03:30
parent 5b4c0d183f
commit 5388bea320
76 changed files with 3836 additions and 1961 deletions
+85
View File
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>nursing — Seed Deck</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #faf9f5;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
#__bundler_loading {
position: fixed;
bottom: 20px;
right: 20px;
font: 13px/1.4 -apple-system, BlinkMacSystemFont, sans-serif;
color: #666;
background: #fff;
padding: 8px 14px;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
z-index: 10000;
}
#__bundler_thumbnail {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #faf9f5;
z-index: 9999;
}
#__bundler_thumbnail svg {
width: 100%;
height: 100%;
object-fit: contain;
}
#__bundler_placeholder {
color: #999;
font-size: 14px;
}
</style>
<noscript>
<style>
#__bundler_loading {
display: none;
}
</style>
<div
style="position:fixed;bottom:12px;left:12px;font:13px/1.4 -apple-system,BlinkMacSystemFont,sans-serif;color:#999;background:rgba(255,255,255,0.9);padding:6px 12px;border-radius:6px;box-shadow:0 1px 4px rgba(0,0,0,0.08);z-index:10000;">
This page requires JavaScript to display.
</div>
</noscript>
</head>
<body>
<div id="__bundler_thumbnail">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<rect width="100" height="100" fill="#1d4a40"></rect>
<text x="30" y="58" font-family="Space Grotesk, sans-serif" font-size="34" font-weight="700"
fill="#f3efe9">n</text>
<circle cx="62" cy="52" r="6" fill="#d98c6a"></circle>
</svg>
</div>
<div id="__bundler_loading">Unpacking...</div>
</body>
</html>