mirror of
https://github.com/fccapria/scientify.git
synced 2026-01-12 02:36:10 +00:00
Initial release
This commit is contained in:
commit
ae5e4b8873
52 changed files with 17572 additions and 0 deletions
37
frontend/public/favicon.svg
Normal file
37
frontend/public/favicon.svg
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
||||
<defs>
|
||||
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<!-- Sfondo circolare -->
|
||||
<circle cx="32" cy="32" r="30" fill="url(#gradient)" stroke="#ffffff" stroke-width="2"/>
|
||||
|
||||
<!-- Microscopio base -->
|
||||
<rect x="26" y="48" width="12" height="8" fill="#ffffff" rx="2"/>
|
||||
|
||||
<!-- Corpo del microscopio -->
|
||||
<rect x="28" y="35" width="8" height="15" fill="#ffffff" rx="1"/>
|
||||
|
||||
<!-- Oculare -->
|
||||
<circle cx="32" cy="20" r="4" fill="#ffffff"/>
|
||||
<circle cx="32" cy="20" r="2.5" fill="#667eea"/>
|
||||
|
||||
<!-- Braccio laterale -->
|
||||
<rect x="36" y="28" width="12" height="3" fill="#ffffff" rx="1.5"/>
|
||||
<circle cx="48" cy="29.5" r="3" fill="#ffffff"/>
|
||||
<circle cx="48" cy="29.5" r="1.5" fill="#667eea"/>
|
||||
|
||||
<!-- Obiettivo -->
|
||||
<rect x="30" y="40" width="4" height="6" fill="#667eea" rx="1"/>
|
||||
|
||||
<!-- Piattaforma campione -->
|
||||
<rect x="24" y="42" width="16" height="2" fill="#ffffff" rx="1"/>
|
||||
|
||||
<!-- Dettagli decorativi -->
|
||||
<circle cx="20" cy="15" r="1.5" fill="#ffffff" opacity="0.8"/>
|
||||
<circle cx="44" cy="18" r="1" fill="#ffffff" opacity="0.6"/>
|
||||
<circle cx="18" cy="35" r="1" fill="#ffffff" opacity="0.7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
36
frontend/public/index.html
Normal file
36
frontend/public/index.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="it">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" type="image/svg+xml" />
|
||||
<link rel="alternate icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#667eea" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Scientify - modern platform for managing and sharing scientific publications"
|
||||
/>
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="author" content="Scientify Team" />
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="Scientify - Scientific Publications Management" />
|
||||
<meta property="og:description" content="modern platform for managing and sharing scientific publications" />
|
||||
<meta property="og:image" content="%PUBLIC_URL%/favicon.svg" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:title" content="Scientify - Scientific Publications Management" />
|
||||
<meta property="twitter:description" content="modern platform for managing and sharing scientific publications" />
|
||||
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.svg" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
|
||||
<title>Scientify - Scientific Publications Management</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>Allow javascript to use Scientify.</noscript>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
frontend/public/logo192.png
Normal file
BIN
frontend/public/logo192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.2 KiB |
BIN
frontend/public/logo512.png
Normal file
BIN
frontend/public/logo512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.4 KiB |
22
frontend/public/manifest.json
Normal file
22
frontend/public/manifest.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"short_name": "Scientify",
|
||||
"name": "Scientify - Scientific Publications Management",
|
||||
"description": "Modern platform for managing and sharing scientific publications",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.svg",
|
||||
"type": "image/svg+xml",
|
||||
"sizes": "any"
|
||||
},
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#667eea",
|
||||
"background_color": "#f8fafc",
|
||||
"categories": ["education", "productivity", "utilities"]
|
||||
}
|
||||
3
frontend/public/robots.txt
Normal file
3
frontend/public/robots.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
Loading…
Add table
Add a link
Reference in a new issue