digitalassistant-ai commited on
Commit
d2b2390
·
verified ·
1 Parent(s): 4d811d7

Upload about.html

Browse files
Files changed (1) hide show
  1. about.html +99 -0
about.html ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>About — Selling Assistant</title>
7
+ <meta name="description" content="Learn about the modules behind Selling Assistant: Intent Recognition, Sentiment Analysis, Conversion Rate Prediction, Sales AI Generation, and Quality Assurance." />
8
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
10
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet" />
11
+ <link rel="stylesheet" href="style.css" />
12
+ </head>
13
+ <body>
14
+ <div class="bg"></div>
15
+ <main class="page">
16
+ <nav class="topbar">
17
+ <div class="brand" aria-label="Selling Assistant brand">
18
+ <span class="mark" aria-hidden="true"></span>
19
+ <span class="brand-name">Selling Assistant</span>
20
+ </div>
21
+ <div class="nav-actions">
22
+ <a href="index.html" class="nav-link" aria-label="Go to Home">Home</a>
23
+ <a href="index.html#try" class="nav-link" aria-label="Go to Try">Try</a>
24
+ </div>
25
+ </nav>
26
+
27
+ <section class="hero">
28
+ <h1 class="brand-title gradient-text">About</h1>
29
+ <p class="subtitle">Modules and capabilities for better e‑commerce conversations</p>
30
+ <p class="intro">
31
+ Selling Assistant integrates five core modules: <strong>Intent Recognition</strong>, <strong>Sentiment Analysis</strong>,
32
+ <strong>Conversion Rate Prediction</strong>, <strong>Sales AI Generation</strong>, and <strong>Quality Assurance</strong>.
33
+ Together, they deliver smarter, warmer, and more effective sales chats.
34
+ </p>
35
+ </section>
36
+
37
+ <section class="divider" aria-hidden="true"></section>
38
+
39
+ <section class="features">
40
+ <h2 class="section-title">Core Modules</h2>
41
+ <div class="feature-stack">
42
+ <article class="feature-card">
43
+ <h3>Intent Recognition</h3>
44
+ <p>Accurately classifies sales intents to route conversations.</p>
45
+ <ul class="feature-list">
46
+ <li>Product information, specs, compatibility</li>
47
+ <li>Pricing, promotions, discounts</li>
48
+ <li>Availability, shipping, returns</li>
49
+ </ul>
50
+ </article>
51
+ <article class="feature-card">
52
+ <h3>Sentiment Analysis</h3>
53
+ <p>Understands emotional tone to adapt empathy and style.</p>
54
+ <ul class="feature-list">
55
+ <li>Detects positive, neutral, negative sentiments</li>
56
+ <li>Tunes warmth and patience per context</li>
57
+ <li>Flags frustration, confusion, urgency for care</li>
58
+ </ul>
59
+ </article>
60
+ <article class="feature-card">
61
+ <h3>Conversion Rate Prediction</h3>
62
+ <p>Predicts purchase likelihood to optimize persuasion.</p>
63
+ <ul class="feature-list">
64
+ <li>Real‑time intent scoring and monitoring</li>
65
+ <li>Adjusts enthusiasm and CTA strength dynamically</li>
66
+ <li>Suggests incentives with expected lift</li>
67
+ </ul>
68
+ </article>
69
+ <article class="feature-card">
70
+ <h3>Sales AI Generation</h3>
71
+ <p>Discovers true needs and crafts persuasive sales language.</p>
72
+ <ul class="feature-list">
73
+ <li>Smart questioning for need discovery</li>
74
+ <li>Methodical, empathetic sales scripts</li>
75
+ <li>Personalized product recommendations</li>
76
+ </ul>
77
+ </article>
78
+ <article class="feature-card">
79
+ <h3>Quality Assurance</h3>
80
+ <p>Improves service quality and model performance.</p>
81
+ <ul class="feature-list">
82
+ <li>Conversation checks and compliance guardrails</li>
83
+ <li>Actionable coaching for sales skills</li>
84
+ <li>Self‑learning via evaluation loops</li>
85
+ </ul>
86
+ </article>
87
+ </div>
88
+ </section>
89
+
90
+ <section class="ribbon">
91
+ <p>Human warmth. Sales wisdom. Better conversions.</p>
92
+ </section>
93
+
94
+ <footer class="footer">
95
+ <span>© 2025 Selling Assistant</span>
96
+ </footer>
97
+ </main>
98
+ </body>
99
+ </html>