update style

This commit is contained in:
Matteo Rosati
2026-01-21 09:58:19 +01:00
parent 9f5d8a0a88
commit 543775d61e
5 changed files with 372 additions and 455 deletions

View File

@@ -1,370 +1,282 @@
/* ===== CSS Variables ===== */ /* ===== CSS Variables ===== */
:root { :root {
--primary-color: #6366f1; --accent-color: rgb(38, 186, 216);
--primary-hover: #4f46e5; --accent-hover: rgb(25, 150, 180);
--primary-light: #818cf8; --accent-light: rgb(80, 205, 235);
--secondary-color: #8b5cf6; --background-gradient: linear-gradient(
--accent-color: #06b6d4; 135deg,
--success-color: #10b981; var(--accent-hover) 0%,
--background-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); var(--accent-color) 100%
--glass-bg: rgba(255, 255, 255, 0.95); );
--glass-border: rgba(255, 255, 255, 0.2); --glass-bg: rgba(255, 255, 255, 0.95);
--text-primary: #1f2937; --glass-border: rgba(255, 255, 255, 0.2);
--text-secondary: #6b7280; --text-primary: #1f2937;
--text-light: #9ca3af; --text-secondary: #6b7280;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --text-light: #9ca3af;
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); --shadow-md:
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--border-radius-sm: 8px; --shadow-lg:
--border-radius-md: 12px; 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--border-radius-lg: 16px; --shadow-xl:
--border-radius-xl: 24px; 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
--transition-fast: 0.15s ease; --border-radius-sm: 8px;
--transition-normal: 0.3s ease; --border-radius-md: 12px;
--transition-slow: 0.5s ease; --border-radius-lg: 16px;
--border-radius-xl: 24px;
--transition-fast: 0.15s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
}
/* ===== Font Face Declarations ===== */
@font-face {
font-family: "Intelo";
src: url("../fonts/intelo-regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Intelo";
src: url("../fonts/intelo-light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Intelo";
src: url("../fonts/intelo-bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
} }
/* ===== Reset & Base Styles ===== */ /* ===== Reset & Base Styles ===== */
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
} }
body { body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-family:
background: var(--background-gradient); "Intelo",
min-height: 100vh; -apple-system,
display: flex; BlinkMacSystemFont,
justify-content: center; "Segoe UI",
align-items: center; Roboto,
padding: 20px; "Helvetica Neue",
color: var(--text-primary); Arial,
line-height: 1.6; sans-serif;
background: var(--background-gradient);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
color: var(--text-primary);
line-height: 1.6;
} }
/* ===== App Container ===== */ /* ===== App Container ===== */
.app-container { .app-container {
width: 100%; width: 100%;
max-width: 900px; max-width: 900px;
height: 90vh; height: 90vh;
max-height: 800px; max-height: 800px;
background: var(--glass-bg); background: var(--glass-bg);
backdrop-filter: blur(20px); backdrop-filter: blur(20px);
border-radius: var(--border-radius-xl); border-radius: var(--border-radius-xl);
box-shadow: var(--shadow-xl); box-shadow: var(--shadow-xl);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
border: 1px solid var(--glass-border); border: 1px solid var(--glass-border);
animation: fadeInUp 0.6s ease-out; animation: fadeInUp 0.6s ease-out;
} }
@keyframes fadeInUp { @keyframes fadeInUp {
from { from {
opacity: 0; opacity: 0;
transform: translateY(30px); transform: translateY(30px);
} }
to { to {
opacity: 1; opacity: 1;
transform: translateY(0); transform: translateY(0);
} }
} }
/* ===== Header ===== */ /* ===== Header ===== */
.chat-header { .chat-header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); background: linear-gradient(
padding: 20px 24px; 135deg,
display: flex; var(--accent-hover) 0%,
justify-content: space-between; var(--accent-color) 100%
align-items: center; );
box-shadow: var(--shadow-md); padding: 20px 24px;
z-index: 10; display: flex;
justify-content: space-between;
align-items: center;
box-shadow: var(--shadow-md);
z-index: 10;
} }
.header-content { .header-content {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 12px; gap: 12px;
} }
.logo-icon { .logo-icon {
width: 40px; width: 40px;
height: 40px; height: 40px;
background: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.2);
border-radius: var(--border-radius-md); border-radius: var(--border-radius-md);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
color: white; color: white;
animation: pulse 2s infinite; animation: pulse 2s infinite;
} }
@keyframes pulse { @keyframes pulse {
0%,
100% {
transform: scale(1);
}
0%, 50% {
100% { transform: scale(1.05);
transform: scale(1); }
}
50% {
transform: scale(1.05);
}
} }
.header-title { .header-title {
font-size: 1.5rem; font-size: 1.5rem;
font-weight: 700; font-weight: 700;
color: white; color: white;
letter-spacing: -0.5px; letter-spacing: -0.5px;
}
.header-status {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.15);
padding: 6px 12px;
border-radius: 20px;
}
.status-dot {
width: 8px;
height: 8px;
background: var(--success-color);
border-radius: 50%;
animation: blink 1.5s infinite;
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.status-text {
color: white;
font-size: 0.875rem;
font-weight: 500;
} }
/* ===== Main Content ===== */ /* ===== Main Content ===== */
.chat-main { .chat-main {
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow-y: auto; overflow-y: auto;
background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
scroll-behavior: smooth; scroll-behavior: smooth;
} }
.chat-main::-webkit-scrollbar { .chat-main::-webkit-scrollbar {
width: 6px; width: 6px;
} }
.chat-main::-webkit-scrollbar-track { .chat-main::-webkit-scrollbar-track {
background: transparent; background: transparent;
} }
.chat-main::-webkit-scrollbar-thumb { .chat-main::-webkit-scrollbar-thumb {
background: var(--text-light); background: var(--text-light);
border-radius: 3px; border-radius: 3px;
} }
.chat-main::-webkit-scrollbar-thumb:hover { .chat-main::-webkit-scrollbar-thumb:hover {
background: var(--text-secondary); background: var(--text-secondary);
}
/* ===== Welcome Section ===== */
.welcome-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
text-align: center;
animation: fadeIn 0.8s ease-out;
flex-shrink: 0;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.welcome-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
margin-bottom: 24px;
box-shadow: var(--shadow-lg);
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.welcome-title {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 8px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.welcome-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: 32px;
max-width: 500px;
}
.sample-question {
background: white;
padding: 20px 24px;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-md);
max-width: 600px;
border-left: 4px solid var(--primary-color);
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.sample-question:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.sample-label {
display: block;
font-size: 0.75rem;
font-weight: 600;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
}
.sample-text {
font-size: 1rem;
color: var(--text-primary);
font-style: italic;
} }
/* ===== Messages Container ===== */ /* ===== Messages Container ===== */
.messages-container { .messages-container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 16px; gap: 16px;
padding: 24px; padding: 24px;
flex-shrink: 0; flex-shrink: 0;
} }
/* ===== Message Styles ===== */ /* ===== Message Styles ===== */
.message { .message {
max-width: 75%; max-width: 75%;
padding: 14px 18px; padding: 14px 18px;
border-radius: var(--border-radius-lg); border-radius: var(--border-radius-lg);
font-size: 0.95rem; font-size: 0.95rem;
line-height: 1.6; line-height: 1.6;
animation: messageSlide 0.3s ease-out; animation: messageSlide 0.3s ease-out;
word-wrap: break-word; word-wrap: break-word;
} }
@keyframes messageSlide { @keyframes messageSlide {
from { from {
opacity: 0; opacity: 0;
transform: translateY(10px); transform: translateY(10px);
} }
to { to {
opacity: 1; opacity: 1;
transform: translateY(0); transform: translateY(0);
} }
} }
.sent { .sent {
align-self: flex-end; align-self: flex-end;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); background: linear-gradient(
color: white; 135deg,
border-bottom-right-radius: 4px; var(--accent-hover) 0%,
box-shadow: var(--shadow-md); var(--accent-color) 100%
);
color: white;
border-bottom-right-radius: 4px;
box-shadow: var(--shadow-md);
} }
.sent a { .sent a {
color: white; color: white;
text-decoration: underline; text-decoration: underline;
} }
.received { .received {
align-self: flex-start; align-self: flex-start;
background: white; background: white;
color: var(--text-primary); color: var(--text-primary);
border-bottom-left-radius: 4px; border-bottom-left-radius: 4px;
box-shadow: var(--shadow-sm); box-shadow: var(--shadow-sm);
border: 1px solid rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.05);
} }
.received a { .received a {
color: var(--primary-color); color: var(--accent-color);
text-decoration: none; text-decoration: none;
} }
.received a:hover { .received a:hover {
text-decoration: underline; text-decoration: underline;
} }
/* ===== Message Content Lists ===== */ /* ===== Message Content Lists ===== */
.message ul, .message ul,
.message ol { .message ol {
margin: 8px 0; margin: 8px 0;
padding-left: 20px; padding-left: 20px;
} }
.message ul { .message ul {
list-style-type: disc; list-style-type: disc;
} }
.message ol { .message ol {
list-style-type: decimal; list-style-type: decimal;
} }
.message li { .message li {
margin: 4px 0; margin: 4px 0;
line-height: 1.6; line-height: 1.6;
} }
.message li::marker { .message li::marker {
color: var(--primary-color); color: var(--accent-color);
} }
/* Nested lists */ /* Nested lists */
@@ -372,203 +284,203 @@ body {
.message ol ol, .message ol ol,
.message ul ol, .message ul ol,
.message ol ul { .message ol ul {
margin: 4px 0; margin: 4px 0;
} }
/* ===== Footer ===== */ /* ===== Footer ===== */
.chat-footer { .chat-footer {
background: white; background: white;
padding: 20px 24px; padding: 20px 24px;
border-top: 1px solid rgba(0, 0, 0, 0.05); border-top: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05); box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
} }
.input-wrapper { .input-wrapper {
display: flex; display: flex;
gap: 12px; gap: 12px;
align-items: flex-end; align-items: flex-end;
background: var(--background-gradient); background: var(--background-gradient);
padding: 6px; padding: 6px;
border-radius: var(--border-radius-lg); border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-md); box-shadow: var(--shadow-md);
transition: box-shadow var(--transition-normal); transition: box-shadow var(--transition-normal);
} }
.input-wrapper:focus-within { .input-wrapper:focus-within {
box-shadow: var(--shadow-lg); box-shadow: var(--shadow-lg);
} }
.message-input { .message-input {
flex: 1; flex: 1;
background: white; background: white;
border: none; border: none;
border-radius: var(--border-radius-md); border-radius: var(--border-radius-md);
padding: 14px 16px; padding: 14px 16px;
font-size: 1rem; font-size: 1rem;
font-family: inherit; font-family: inherit;
color: var(--text-primary); color: var(--text-primary);
resize: none; resize: none;
outline: none; outline: none;
min-height: 50px; min-height: 50px;
max-height: 150px; max-height: 150px;
field-sizing: content; field-sizing: content;
transition: box-shadow var(--transition-fast); transition: box-shadow var(--transition-fast);
} }
.message-input::placeholder { .message-input::placeholder {
color: var(--text-light); color: var(--text-light);
} }
.message-input:focus { .message-input:focus {
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); box-shadow: 0 0 0 3px rgba(38, 186, 216, 0.2);
} }
.message-input:disabled { .message-input:disabled {
opacity: 0.6; opacity: 0.6;
cursor: not-allowed; cursor: not-allowed;
background: #f3f4f6; background: #f3f4f6;
} }
.send-button { .send-button {
width: 50px; width: 50px;
height: 50px; height: 50px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); background: linear-gradient(
border: none; 135deg,
border-radius: var(--border-radius-md); var(--accent-hover) 0%,
color: white; var(--accent-color) 100%
cursor: pointer; );
display: flex; border: none;
align-items: center; border-radius: var(--border-radius-md);
justify-content: center; color: white;
transition: all var(--transition-normal); cursor: pointer;
box-shadow: var(--shadow-md); display: flex;
flex-shrink: 0; align-items: center;
justify-content: center;
transition: all var(--transition-normal);
box-shadow: var(--shadow-md);
flex-shrink: 0;
} }
.send-button:hover { .send-button:hover {
transform: scale(1.05); transform: scale(1.05);
box-shadow: var(--shadow-lg); box-shadow: var(--shadow-lg);
} }
.send-button:active { .send-button:active {
transform: scale(0.95); transform: scale(0.95);
} }
.send-button:disabled { .send-button:disabled {
opacity: 0.5; opacity: 0.5;
cursor: not-allowed; cursor: not-allowed;
transform: none; transform: none;
} }
.footer-hint { .footer-hint {
text-align: center; text-align: center;
font-size: 0.75rem; font-size: 0.75rem;
color: var(--text-light); color: var(--text-light);
margin-top: 12px; margin-top: 12px;
} }
/* ===== Responsive Design ===== */ /* ===== Responsive Design ===== */
@media (max-width: 768px) { @media (max-width: 768px) {
body { body {
padding: 10px; padding: 10px;
} }
.app-container { .app-container {
height: 95vh; height: 95vh;
max-height: none; max-height: none;
border-radius: var(--border-radius-lg); border-radius: var(--border-radius-lg);
} }
.chat-header { .chat-header {
padding: 16px 20px; padding: 16px 20px;
} }
.header-title { .header-title {
font-size: 1.25rem; font-size: 1.25rem;
} }
.welcome-section { .welcome-section {
padding: 30px 16px; padding: 30px 16px;
} }
.welcome-icon { .welcome-icon {
width: 64px; width: 64px;
height: 64px; height: 64px;
} }
.welcome-title { .welcome-title {
font-size: 1.5rem; font-size: 1.5rem;
} }
.welcome-subtitle { .welcome-subtitle {
font-size: 1rem; font-size: 1rem;
} }
.sample-question { .sample-question {
padding: 16px 20px; padding: 16px 20px;
} }
.chat-main { .chat-main {
padding: 0; padding: 0;
} }
.messages-container { .messages-container {
padding: 16px; padding: 16px;
gap: 12px; gap: 12px;
} }
.message { .message {
max-width: 85%; max-width: 85%;
padding: 12px 14px; padding: 12px 14px;
font-size: 0.9rem; font-size: 0.9rem;
} }
.chat-footer { .chat-footer {
padding: 16px 20px; padding: 16px 20px;
} }
.message-input { .message-input {
padding: 12px 14px; padding: 12px 14px;
font-size: 0.95rem; font-size: 0.95rem;
} }
.send-button { .send-button {
width: 46px; width: 46px;
height: 46px; height: 46px;
} }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
.header-status { .message {
display: none; max-width: 90%;
} }
.message { .sample-question {
max-width: 90%; padding: 14px 16px;
} }
.sample-question { .sample-text {
padding: 14px 16px; font-size: 0.9rem;
} }
.sample-text {
font-size: 0.9rem;
}
} }
/* ===== Loading Animation ===== */ /* ===== Loading Animation ===== */
@keyframes shimmer { @keyframes shimmer {
0% { 0% {
background-position: -200% 0; background-position: -200% 0;
} }
100% { 100% {
background-position: 200% 0; background-position: 200% 0;
} }
} }
.loading-message { .loading-message {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%; background-size: 200% 100%;
animation: shimmer 1.5s infinite; animation: shimmer 1.5s infinite;
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,61 +1,66 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/static/css/main.css"> <link rel="stylesheet" href="/static/css/main.css" />
<title>AI Chat Assistant</title> <title>AI Chat Assistant</title>
</head> </head>
<body> <body>
<div class="app-container"> <div class="app-container">
<header class="chat-header"> <header class="chat-header">
<div class="header-content"> <div class="header-content">
<div class="logo-icon"> <div class="logo-icon">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg
<path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 6C13.66 6 15 7.34 15 9C15 10.66 13.66 12 12 12C10.34 12 9 10.66 9 9C9 7.34 10.34 6 12 6ZM12 19.2C9.5 19.2 7.29 17.92 6 15.98C6.03 13.99 10 12.9 12 12.9C13.99 12.9 17.97 13.99 18 15.98C16.71 17.92 14.5 19.2 12 19.2Z" fill="currentColor"/> width="32"
</svg> height="32"
</div> viewBox="0 0 24 24"
<h1 class="header-title">AI Chat Assistant</h1> fill="none"
</div> xmlns="http://www.w3.org/2000/svg"
<div class="header-status"> >
<span class="status-dot"></span> <path
<span class="status-text">Online</span> d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 6C13.66 6 15 7.34 15 9C15 10.66 13.66 12 12 12C10.34 12 9 10.66 9 9C9 7.34 10.34 6 12 6ZM12 19.2C9.5 19.2 7.29 17.92 6 15.98C6.03 13.99 10 12.9 12 12.9C13.99 12.9 17.97 13.99 18 15.98C16.71 17.92 14.5 19.2 12 19.2Z"
</div> fill="currentColor"
</header> />
</svg>
</div>
<h1 class="header-title">AKERN Assistant</h1>
</div>
</header>
<main class="chat-main"> <main class="chat-main">
<div class="welcome-section"> <div id="messages" class="messages-container"></div>
<div class="welcome-icon"> </main>
<svg width="64" height="64" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM20 16H6L4 18V4H20V16Z" fill="currentColor"/>
</svg>
</div>
<h2 class="welcome-title">Welcome to AI Chat</h2>
<p class="welcome-subtitle">Ask me anything and I'll help you find answers</p>
<div class="sample-question">
<span class="sample-label">Example question:</span>
<p class="sample-text">Come si calcola la massa magra? dammi una spiegazione dettagliata</p>
</div>
</div>
<div id="messages" class="messages-container"></div> <footer class="chat-footer">
</main> <div class="input-wrapper">
<textarea
<footer class="chat-footer"> id="message"
<div class="input-wrapper"> class="message-input"
<textarea id="message" class="message-input" placeholder="Type your message here..." rows="1"></textarea> placeholder="Type your message here..."
<button id="button" class="send-button"> rows="1"
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> ></textarea>
<path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z" fill="currentColor"/> <button id="button" class="send-button">
</svg> <svg
</button> width="24"
</div> height="24"
<p class="footer-hint">Press Enter to send, Shift+Enter for new line</p> viewBox="0 0 24 24"
</footer> fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"
fill="currentColor"
/>
</svg>
</button>
</div>
<p class="footer-hint">Press Enter to send, Shift+Enter for new line</p>
</footer>
</div> </div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="/static/js/main.js"></script> <script src="/static/js/main.js"></script>
</body> </body>
</html> </html>