Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ikezhan committed Mar 10, 2025
0 parents commit 6838c25
Show file tree
Hide file tree
Showing 18 changed files with 2,160 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
venv/
.venv/
*.log

# React/Node
node_modules/
/coverage
/build
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# IDE
.idea/
.vscode/
*.swp
*.swo
15 changes: 15 additions & 0 deletions asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"files": {
"main.css": "/finalproject/static/css/main.e6c13ad2.css",
"main.js": "/finalproject/static/js/main.a3ba684f.js",
"static/js/453.8ba98c79.chunk.js": "/finalproject/static/js/453.8ba98c79.chunk.js",
"index.html": "/finalproject/index.html",
"main.e6c13ad2.css.map": "/finalproject/static/css/main.e6c13ad2.css.map",
"main.a3ba684f.js.map": "/finalproject/static/js/main.a3ba684f.js.map",
"453.8ba98c79.chunk.js.map": "/finalproject/static/js/453.8ba98c79.chunk.js.map"
},
"entrypoints": [
"static/css/main.e6c13ad2.css",
"static/js/main.a3ba684f.js"
]
}
Binary file added favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/finalproject/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Surgery Scheduler - Efficient operating room management"/><link rel="apple-touch-icon" href="/finalproject/logo192.png"/><link rel="manifest" href="/finalproject/manifest.json"/><title>Surgery Scheduler</title><style>.watermark{position:fixed;z-index:9;width:100%;height:100%;pointer-events:none;display:flex;align-items:center;justify-content:center;top:0;left:0;overflow:hidden}.watermark span{color:rgba(33,150,243,.08);font-size:5vw;font-weight:800;transform:rotate(-30deg);white-space:nowrap;letter-spacing:.5vw;user-select:none}.instruction-button{position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#2196f3,#1976d2);color:#fff;border:none;border-radius:50px;padding:12px 25px;font-weight:600;font-size:16px;box-shadow:0 4px 10px rgba(33,150,243,.3);cursor:pointer;z-index:1000;transition:all .3s ease;text-decoration:none;display:flex;align-items:center}.instruction-button:hover{transform:translateY(-3px);box-shadow:0 6px 15px rgba(33,150,243,.4)}.instruction-button svg{margin-right:8px;width:20px;height:20px}.gh-pages-notice{position:fixed;top:10px;left:50%;transform:translateX(-50%);background:rgba(255,193,7,.9);color:#333;padding:10px 20px;border-radius:50px;font-size:14px;z-index:2000;text-align:center;max-width:90%;box-shadow:0 2px 10px rgba(0,0,0,.1);animation:fadeIn .5s ease-in-out}@keyframes fadeIn{from{opacity:0;transform:translate(-50%,-20px)}to{opacity:1;transform:translate(-50%,0)}}</style><script defer="defer" src="/finalproject/static/js/main.a3ba684f.js"></script><link href="/finalproject/static/css/main.e6c13ad2.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div class="watermark"><span>FINALPROJECT_IKEZHAN</span></div><div class="gh-pages-notice" style="position:fixed;top:10px;left:50%;transform:translateX(-50%);background:rgba(255,193,7,.9);color:#333;padding:10px 20px;border-radius:50px;font-size:14px;z-index:2000;text-align:center;max-width:90%;box-shadow:0 2px 10px rgba(0,0,0,.1);animation:fadeIn .5s ease-in-out"><strong>⚠️ API CONNECTION ERROR</strong>: You're seeing this error because the API server is only available in local environments.<br>For class demo purposes, please <a href="./static-demo.html" style="color:#0056b3;text-decoration:underline;font-weight:700">click here</a> to view the interactive demo using mock data.</div><a href="./system-guide.html" class="instruction-button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg> Instructions</a><div id="root"></div></body></html>
Binary file added logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
Loading

0 comments on commit 6838c25

Please sign in to comment.