ArgoMuk93 commited on
Commit
43969da
·
verified ·
1 Parent(s): cfc5cf6

I am trying to design an elegant but simple website for the AI consulting service that helps large retail companies determine dynamic pricing

Browse files
Files changed (7) hide show
  1. README.md +8 -5
  2. components/footer.js +155 -0
  3. components/header.js +148 -0
  4. contact.html +186 -0
  5. index.html +202 -19
  6. script.js +72 -0
  7. style.css +80 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Dynamicpricing Ai
3
- emoji: 🏆
4
- colorFrom: red
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: DynamicPricing AI 🧠
3
+ colorFrom: blue
4
+ colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
components/footer.js ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ }
9
+
10
+ * {
11
+ margin: 0;
12
+ padding: 0;
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ footer {
17
+ background-color: #1f2937;
18
+ color: #d1d5db;
19
+ padding: 4rem 0 2rem;
20
+ }
21
+
22
+ .container {
23
+ max-width: 1200px;
24
+ margin: 0 auto;
25
+ padding: 0 1rem;
26
+ }
27
+
28
+ .footer-content {
29
+ display: grid;
30
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
31
+ gap: 2rem;
32
+ margin-bottom: 3rem;
33
+ }
34
+
35
+ .footer-column h3 {
36
+ color: white;
37
+ margin-bottom: 1.5rem;
38
+ font-size: 1.25rem;
39
+ }
40
+
41
+ .footer-column ul {
42
+ list-style: none;
43
+ }
44
+
45
+ .footer-column ul li {
46
+ margin-bottom: 0.75rem;
47
+ }
48
+
49
+ .footer-column ul li a {
50
+ color: #d1d5db;
51
+ text-decoration: none;
52
+ transition: color 0.3s ease;
53
+ }
54
+
55
+ .footer-column ul li a:hover {
56
+ color: white;
57
+ }
58
+
59
+ .social-links {
60
+ display: flex;
61
+ gap: 1rem;
62
+ margin-top: 1rem;
63
+ }
64
+
65
+ .social-links a {
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ width: 40px;
70
+ height: 40px;
71
+ border-radius: 50%;
72
+ background-color: #374151;
73
+ color: white;
74
+ transition: background-color 0.3s ease;
75
+ }
76
+
77
+ .social-links a:hover {
78
+ background-color: #4f46e5;
79
+ }
80
+
81
+ .copyright {
82
+ border-top: 1px solid #374151;
83
+ padding-top: 2rem;
84
+ text-align: center;
85
+ color: #9ca3af;
86
+ font-size: 0.875rem;
87
+ }
88
+
89
+ @media (max-width: 768px) {
90
+ .footer-content {
91
+ grid-template-columns: 1fr;
92
+ }
93
+ }
94
+ </style>
95
+
96
+ <footer>
97
+ <div class="container">
98
+ <div class="footer-content">
99
+ <div class="footer-column">
100
+ <h3>DynamicPricing AI</h3>
101
+ <p>AI-powered pricing solutions for retail giants. Optimize your pricing strategy with real-time market intelligence.</p>
102
+ <div class="social-links">
103
+ <a href="#"><i data-feather="twitter"></i></a>
104
+ <a href="#"><i data-feather="linkedin"></i></a>
105
+ <a href="#"><i data-feather="facebook"></i></a>
106
+ </div>
107
+ </div>
108
+
109
+ <div class="footer-column">
110
+ <h3>Solutions</h3>
111
+ <ul>
112
+ <li><a href="#">Real-time Pricing</a></li>
113
+ <li><a href="#">Competitive Intelligence</a></li>
114
+ <li><a href="#">Demand Forecasting</a></li>
115
+ <li><a href="#">Promotional Optimization</a></li>
116
+ <li><a href="#">Inventory Management</a></li>
117
+ </ul>
118
+ </div>
119
+
120
+ <div class="footer-column">
121
+ <h3>Company</h3>
122
+ <ul>
123
+ <li><a href="#">About Us</a></li>
124
+ <li><a href="#">Careers</a></li>
125
+ <li><a href="#">Case Studies</a></li>
126
+ <li><a href="#">Blog</a></li>
127
+ <li><a href="#">Contact</a></li>
128
+ </ul>
129
+ </div>
130
+
131
+ <div class="footer-column">
132
+ <h3>Contact</h3>
133
+ <ul>
134
+ <li><i data-feather="map-pin"></i> San Francisco, CA</li>
135
+ <li><i data-feather="phone"></i> +1 (555) 123-4567</li>
136
+ <li><i data-feather="mail"></i> info@dynamicpricing.ai</li>
137
+ </ul>
138
+ </div>
139
+ </div>
140
+
141
+ <div class="copyright">
142
+ <p>&copy; 2023 DynamicPricing AI. All rights reserved.</p>
143
+ </div>
144
+ </div>
145
+ </footer>
146
+ `;
147
+
148
+ // Initialize feather icons after rendering
149
+ setTimeout(() => {
150
+ feather.replace();
151
+ }, 0);
152
+ }
153
+ }
154
+
155
+ customElements.define('custom-footer', CustomFooter);
components/header.js ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomHeader extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ }
9
+
10
+ * {
11
+ margin: 0;
12
+ padding: 0;
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ header {
17
+ background-color: white;
18
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
19
+ position: sticky;
20
+ top: 0;
21
+ z-index: 50;
22
+ }
23
+
24
+ .container {
25
+ max-width: 1200px;
26
+ margin: 0 auto;
27
+ padding: 0 1rem;
28
+ display: flex;
29
+ justify-content: space-between;
30
+ align-items: center;
31
+ height: 80px;
32
+ }
33
+
34
+ .logo {
35
+ display: flex;
36
+ align-items: center;
37
+ font-weight: 700;
38
+ font-size: 1.5rem;
39
+ color: #4f46e5;
40
+ text-decoration: none;
41
+ }
42
+
43
+ .logo i {
44
+ margin-right: 0.5rem;
45
+ }
46
+
47
+ nav ul {
48
+ display: flex;
49
+ list-style: none;
50
+ }
51
+
52
+ nav ul li {
53
+ margin-left: 2rem;
54
+ }
55
+
56
+ nav ul li a {
57
+ text-decoration: none;
58
+ color: #374151;
59
+ font-weight: 500;
60
+ transition: color 0.3s ease;
61
+ }
62
+
63
+ nav ul li a:hover {
64
+ color: #4f46e5;
65
+ }
66
+
67
+ .mobile-menu-btn {
68
+ display: none;
69
+ background: none;
70
+ border: none;
71
+ font-size: 1.5rem;
72
+ cursor: pointer;
73
+ color: #374151;
74
+ }
75
+
76
+ @media (max-width: 768px) {
77
+ .nav-links {
78
+ display: none;
79
+ }
80
+
81
+ .mobile-menu-btn {
82
+ display: block;
83
+ }
84
+
85
+ nav ul {
86
+ flex-direction: column;
87
+ position: absolute;
88
+ top: 80px;
89
+ left: 0;
90
+ right: 0;
91
+ background: white;
92
+ padding: 1rem;
93
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
94
+ }
95
+
96
+ nav ul li {
97
+ margin: 0.5rem 0;
98
+ }
99
+
100
+ .nav-links.active {
101
+ display: block;
102
+ }
103
+ }
104
+ </style>
105
+
106
+ <header>
107
+ <div class="container">
108
+ <a href="/" class="logo">
109
+ <i data-feather="trending-up"></i>
110
+ <span>DynamicPricing AI</span>
111
+ </a>
112
+
113
+ <button class="mobile-menu-btn" id="menuBtn">
114
+ <i data-feather="menu"></i>
115
+ </button>
116
+
117
+ <nav>
118
+ <ul class="nav-links" id="navLinks">
119
+ <li><a href="/">Home</a></li>
120
+ <li><a href="#solutions">Solutions</a></li>
121
+ <li><a href="#contact">Contact</a></li>
122
+ <li><a href="contact.html">Get Started</a></li>
123
+ </ul>
124
+ </nav>
125
+ </div>
126
+ </header>
127
+ `;
128
+
129
+ // Add event listeners after rendering
130
+ setTimeout(() => {
131
+ const menuBtn = this.shadowRoot.getElementById('menuBtn');
132
+ const navLinks = this.shadowRoot.getElementById('navLinks');
133
+
134
+ menuBtn.addEventListener('click', () => {
135
+ navLinks.classList.toggle('active');
136
+ const menuIcon = menuBtn.querySelector('i');
137
+ if (navLinks.classList.contains('active')) {
138
+ menuIcon.setAttribute('data-feather', 'x');
139
+ } else {
140
+ menuIcon.setAttribute('data-feather', 'menu');
141
+ }
142
+ feather.replace();
143
+ });
144
+ }, 0);
145
+ }
146
+ }
147
+
148
+ customElements.define('custom-header', CustomHeader);
contact.html ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0">
6
+ <title>Contact Us - DynamicPricing AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ </head>
13
+ <body class="bg-gray-50 text-gray-800">
14
+ <custom-header></custom-header>
15
+
16
+ <main>
17
+ <!-- Contact Hero -->
18
+ <section class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
19
+ <div class="container mx-auto px-4 text-center">
20
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Get in Touch</h1>
21
+ <p class="text-xl max-w-3xl mx-auto">Ready to transform your pricing strategy? Our team of experts is here to help you get started.</p>
22
+ </div>
23
+ </section>
24
+
25
+ <!-- Contact Content -->
26
+ <section class="py-20">
27
+ <div class="container mx-auto px-4">
28
+ <div class="flex flex-col lg:flex-row gap-12">
29
+ <!-- Contact Form -->
30
+ <div class="lg:w-1/2">
31
+ <div class="bg-white p-8 rounded-xl shadow-lg">
32
+ <h2 class="text-2xl font-bold mb-6">Schedule a Demo</h2>
33
+ <form id="contactForm" class="space-y-6">
34
+ <div>
35
+ <label for="name" class="block text-gray-700 mb-2">Full Name</label>
36
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" required>
37
+ </div>
38
+
39
+ <div>
40
+ <label for="email" class="block text-gray-700 mb-2">Work Email</label>
41
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" required>
42
+ </div>
43
+
44
+ <div>
45
+ <label for="company" class="block text-gray-700 mb-2">Company</label>
46
+ <input type="text" id="company" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" required>
47
+ </div>
48
+
49
+ <div>
50
+ <label for="role" class="block text-gray-700 mb-2">Role</label>
51
+ <select id="role" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
52
+ <option value="">Select your role</option>
53
+ <option value="executive">Executive (C-Suite, VP)</option>
54
+ <option value="manager">Manager</option>
55
+ <option value="analyst">Analyst</option>
56
+ <option value="other">Other</option>
57
+ </select>
58
+ </div>
59
+
60
+ <div>
61
+ <label for="message" class="block text-gray-700 mb-2">How can we help?</label>
62
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"></textarea>
63
+ </div>
64
+
65
+ <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-4 px-6 rounded-lg transition duration-300">Request Demo</button>
66
+ </form>
67
+ </div>
68
+ </div>
69
+
70
+ <!-- Contact Information -->
71
+ <div class="lg:w-1/2">
72
+ <div class="bg-white p-8 rounded-xl shadow-lg h-full">
73
+ <h2 class="text-2xl font-bold mb-6">Contact Information</h2>
74
+
75
+ <div class="space-y-8">
76
+ <div class="flex">
77
+ <div class="flex-shrink-0 w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-4">
78
+ <i data-feather="map-pin" class="text-blue-600"></i>
79
+ </div>
80
+ <div>
81
+ <h3 class="font-bold text-lg mb-1">Our Office</h3>
82
+ <p class="text-gray-600">555 Market Street, Suite 1000<br>San Francisco, CA 94105</p>
83
+ </div>
84
+ </div>
85
+
86
+ <div class="flex">
87
+ <div class="flex-shrink-0 w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center mr-4">
88
+ <i data-feather="phone" class="text-indigo-600"></i>
89
+ </div>
90
+ <div>
91
+ <h3 class="font-bold text-lg mb-1">Phone</h3>
92
+ <p class="text-gray-600">+1 (555) 123-4567</p>
93
+ <p class="text-gray-600">Mon-Fri, 9am-5pm PST</p>
94
+ </div>
95
+ </div>
96
+
97
+ <div class="flex">
98
+ <div class="flex-shrink-0 w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mr-4">
99
+ <i data-feather="mail" class="text-purple-600"></i>
100
+ </div>
101
+ <div>
102
+ <h3 class="font-bold text-lg mb-1">Email</h3>
103
+ <p class="text-gray-600">info@dynamicpricing.ai</p>
104
+ <p class="text-gray-600">support@dynamicpricing.ai</p>
105
+ </div>
106
+ </div>
107
+
108
+ <div class="pt-6">
109
+ <h3 class="font-bold text-lg mb-4">What to Expect</h3>
110
+ <ul class="space-y-3">
111
+ <li class="flex items-start">
112
+ <i data-feather="check-circle" class="text-green-500 mt-1 mr-2 flex-shrink-0"></i>
113
+ <span>30-minute consultation with a pricing expert</span>
114
+ </li>
115
+ <li class="flex items-start">
116
+ <i data-feather="check-circle" class="text-green-500 mt-1 mr-2 flex-shrink-0"></i>
117
+ <span>Customized demo of our platform</span>
118
+ </li>
119
+ <li class="flex items-start">
120
+ <i data-feather="check-circle" class="text-green-500 mt-1 mr-2 flex-shrink-0"></i>
121
+ <span>Personalized ROI analysis for your business</span>
122
+ </li>
123
+ </ul>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </section>
131
+
132
+ <!-- FAQ Section -->
133
+ <section class="py-20 bg-gray-100">
134
+ <div class="container mx-auto px-4">
135
+ <div class="text-center mb-16">
136
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Frequently Asked Questions</h2>
137
+ <p class="text-gray-600 max-w-2xl mx-auto">Everything you need to know about our pricing solutions.</p>
138
+ </div>
139
+
140
+ <div class="max-w-3xl mx-auto space-y-6">
141
+ <div class="bg-white p-6 rounded-lg shadow">
142
+ <h3 class="font-bold text-lg mb-2">How quickly can we implement your solution?</h3>
143
+ <p class="text-gray-600">Most clients are up and running within 4-6 weeks. Our implementation process includes data integration, model training, and testing phases.</p>
144
+ </div>
145
+
146
+ <div class="bg-white p-6 rounded-lg shadow">
147
+ <h3 class="font-bold text-lg mb-2">What data do you need from us?</h3>
148
+ <p class="text-gray-600">We integrate with your existing POS systems, inventory management, CRM, and competitor data sources. Our team works with your IT department to ensure seamless data flow.</p>
149
+ </div>
150
+
151
+ <div class="bg-white p-6 rounded-lg shadow">
152
+ <h3 class="font-bold text-lg mb-2">How do you ensure our prices remain competitive?</h3>
153
+ <p class="text-gray-600">Our AI continuously monitors competitor pricing across multiple channels and automatically adjusts your prices to maintain optimal positioning based on your strategic goals.</p>
154
+ </div>
155
+
156
+ <div class="bg-white p-6 rounded-lg shadow">
157
+ <h3 class="font-bold text-lg mb-2">What kind of ROI can we expect?</h3>
158
+ <p class="text-gray-600">Most clients see 10-25% improvement in profit margins within the first quarter, with additional gains as the system learns and optimizes over time.</p>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </section>
163
+ </main>
164
+
165
+ <custom-footer></custom-footer>
166
+
167
+ <script src="components/header.js"></script>
168
+ <script src="components/footer.js"></script>
169
+ <script src="script.js"></script>
170
+ <script>
171
+ // Form submission handling
172
+ document.getElementById('contactForm').addEventListener('submit', function(e) {
173
+ e.preventDefault();
174
+
175
+ // In a real application, you would send the form data to your server here
176
+ // For this demo, we'll just show an alert
177
+ alert('Thank you for your interest! Our team will contact you within 24 hours to schedule your demo.');
178
+
179
+ // Reset the form
180
+ this.reset();
181
+ });
182
+
183
+ feather.replace();
184
+ </script>
185
+ </body>
186
+ </html>
index.html CHANGED
@@ -1,19 +1,202 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0">
6
+ <title>DynamicPricing AI - Smart Retail Pricing Solutions</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ </head>
13
+ <body class="bg-gray-50 text-gray-800">
14
+ <custom-header></custom-header>
15
+
16
+ <main>
17
+ <!-- Hero Section -->
18
+ <section class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
19
+ <div class="container mx-auto px-4 text-center">
20
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Dynamic Pricing Intelligence for Retail</h1>
21
+ <p class="text-xl mb-10 max-w-3xl mx-auto">AI-powered pricing solutions that adapt in real-time to market conditions, competitor strategies, and consumer behavior.</p>
22
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
23
+ <a href="#contact" class="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-3 px-8 rounded-full transition duration-300">Get Started</a>
24
+ <a href="#solutions" class="bg-transparent border-2 border-white hover:bg-white/10 font-bold py-3 px-8 rounded-full transition duration-300">Learn More</a>
25
+ </div>
26
+ </div>
27
+ </section>
28
+
29
+ <!-- Features Section -->
30
+ <section id="solutions" class="py-20">
31
+ <div class="container mx-auto px-4">
32
+ <div class="text-center mb-16">
33
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Smart Pricing Solutions</h2>
34
+ <p class="text-gray-600 max-w-2xl mx-auto">Our AI algorithms analyze thousands of data points to optimize your pricing strategy in real-time.</p>
35
+ </div>
36
+
37
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-10">
38
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100 hover:shadow-xl transition-shadow">
39
+ <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
40
+ <i data-feather="trending-up" class="text-blue-600"></i>
41
+ </div>
42
+ <h3 class="text-xl font-bold mb-3">Real-time Optimization</h3>
43
+ <p class="text-gray-600">Adjust prices instantly based on demand fluctuations, competitor actions, and inventory levels.</p>
44
+ </div>
45
+
46
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100 hover:shadow-xl transition-shadow">
47
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
48
+ <i data-feather="bar-chart-2" class="text-indigo-600"></i>
49
+ </div>
50
+ <h3 class="text-xl font-bold mb-3">Competitive Intelligence</h3>
51
+ <p class="text-gray-600">Monitor competitor pricing strategies and automatically respond to maintain your market position.</p>
52
+ </div>
53
+
54
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100 hover:shadow-xl transition-shadow">
55
+ <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
56
+ <i data-feather="users" class="text-purple-600"></i>
57
+ </div>
58
+ <h3 class="text-xl font-bold mb-3">Consumer Behavior Analysis</h3>
59
+ <p class="text-gray-600">Understand purchasing patterns and price sensitivity to maximize revenue and customer satisfaction.</p>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </section>
64
+
65
+ <!-- How It Works -->
66
+ <section class="py-20 bg-gray-100">
67
+ <div class="container mx-auto px-4">
68
+ <div class="text-center mb-16">
69
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">How It Works</h2>
70
+ <p class="text-gray-600 max-w-2xl mx-auto">Implementing our solution is simple and delivers immediate value to your business.</p>
71
+ </div>
72
+
73
+ <div class="flex flex-col md:flex-row items-center justify-between gap-10">
74
+ <div class="flex-1">
75
+ <div class="relative">
76
+ <div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-indigo-600 rounded-2xl transform rotate-3"></div>
77
+ <img src="http://static.photos/technology/640x360/42" alt="Data Analysis Dashboard" class="relative rounded-2xl shadow-xl w-full">
78
+ </div>
79
+ </div>
80
+
81
+ <div class="flex-1">
82
+ <div class="space-y-10">
83
+ <div class="flex">
84
+ <div class="flex-shrink-0">
85
+ <div class="flex items-center justify-center w-12 h-12 rounded-full bg-blue-100 text-blue-600 font-bold">1</div>
86
+ </div>
87
+ <div class="ml-4">
88
+ <h3 class="text-xl font-bold mb-2">Data Integration</h3>
89
+ <p class="text-gray-600">Connect your existing systems - POS, inventory, CRM, and competitor data sources.</p>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="flex">
94
+ <div class="flex-shrink-0">
95
+ <div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-100 text-indigo-600 font-bold">2</div>
96
+ </div>
97
+ <div class="ml-4">
98
+ <h3 class="text-xl font-bold mb-2">AI Analysis</h3>
99
+ <p class="text-gray-600">Our algorithms process millions of data points to identify optimal pricing strategies.</p>
100
+ </div>
101
+ </div>
102
+
103
+ <div class="flex">
104
+ <div class="flex-shrink-0">
105
+ <div class="flex items-center justify-center w-12 h-12 rounded-full bg-purple-100 text-purple-600 font-bold">3</div>
106
+ </div>
107
+ <div class="ml-4">
108
+ <h3 class="text-xl font-bold mb-2">Dynamic Implementation</h3>
109
+ <p class="text-gray-600">Prices automatically adjust across all channels based on real-time insights.</p>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ </section>
117
+
118
+ <!-- Testimonials -->
119
+ <section class="py-20">
120
+ <div class="container mx-auto px-4">
121
+ <div class="text-center mb-16">
122
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted by Retail Leaders</h2>
123
+ <p class="text-gray-600 max-w-2xl mx-auto">See how our solutions have transformed pricing strategies for major retailers.</p>
124
+ </div>
125
+
126
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
127
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100">
128
+ <div class="flex items-center mb-6">
129
+ <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
130
+ <div>
131
+ <h4 class="font-bold">Sarah Johnson</h4>
132
+ <p class="text-gray-600 text-sm">CTO, MegaMart</p>
133
+ </div>
134
+ </div>
135
+ <p class="text-gray-700 italic">"DynamicPricing AI increased our profit margins by 18% in the first quarter while maintaining customer satisfaction scores."</p>
136
+ <div class="flex mt-4 text-yellow-400">
137
+ <i data-feather="star"></i>
138
+ <i data-feather="star"></i>
139
+ <i data-feather="star"></i>
140
+ <i data-feather="star"></i>
141
+ <i data-feather="star"></i>
142
+ </div>
143
+ </div>
144
+
145
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100">
146
+ <div class="flex items-center mb-6">
147
+ <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
148
+ <div>
149
+ <h4 class="font-bold">Michael Chen</h4>
150
+ <p class="text-gray-600 text-sm">Director of E-commerce, RetailPro</p>
151
+ </div>
152
+ </div>
153
+ <p class="text-gray-700 italic">"The competitive intelligence feature alone is worth the investment. We've captured 7% more market share in key categories."</p>
154
+ <div class="flex mt-4 text-yellow-400">
155
+ <i data-feather="star"></i>
156
+ <i data-feather="star"></i>
157
+ <i data-feather="star"></i>
158
+ <i data-feather="star"></i>
159
+ <i data-feather="star"></i>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-100">
164
+ <div class="flex items-center mb-6">
165
+ <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
166
+ <div>
167
+ <h4 class="font-bold">Emma Rodriguez</h4>
168
+ <p class="text-gray-600 text-sm">VP of Operations, Global Stores</p>
169
+ </div>
170
+ </div>
171
+ <p class="text-gray-700 italic">"Implementation was seamless and the results were immediate. Our inventory turnover improved by 23% with optimized pricing."</p>
172
+ <div class="flex mt-4 text-yellow-400">
173
+ <i data-feather="star"></i>
174
+ <i data-feather="star"></i>
175
+ <i data-feather="star"></i>
176
+ <i data-feather="star"></i>
177
+ <i data-feather="star"></i>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </section>
183
+
184
+ <!-- CTA Section -->
185
+ <section id="contact" class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
186
+ <div class="container mx-auto px-4 text-center">
187
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Pricing Strategy?</h2>
188
+ <p class="text-xl mb-10 max-w-2xl mx-auto">Join leading retailers who have already optimized their pricing with our AI solutions.</p>
189
+ <a href="contact.html" class="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-4 px-10 rounded-full text-lg transition duration-300 inline-block">Schedule a Demo</a>
190
+ </div>
191
+ </section>
192
+ </main>
193
+
194
+ <custom-footer></custom-footer>
195
+
196
+ <script src="components/header.js"></script>
197
+ <script src="components/footer.js"></script>
198
+ <script src="script.js"></script>
199
+ <script>feather.replace();</script>
200
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
201
+ </body>
202
+ </html>
script.js ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Smooth scrolling for anchor links
2
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
3
+ anchor.addEventListener('click', function (e) {
4
+ e.preventDefault();
5
+
6
+ const target = document.querySelector(this.getAttribute('href'));
7
+ if (target) {
8
+ window.scrollTo({
9
+ top: target.offsetTop - 80,
10
+ behavior: 'smooth'
11
+ });
12
+ }
13
+ });
14
+ });
15
+
16
+ // Simple animation on scroll
17
+ const observerOptions = {
18
+ root: null,
19
+ rootMargin: '0px',
20
+ threshold: 0.1
21
+ };
22
+
23
+ const observer = new IntersectionObserver((entries) => {
24
+ entries.forEach(entry => {
25
+ if (entry.isIntersecting) {
26
+ entry.target.classList.add('animate-fade-in-up');
27
+ }
28
+ });
29
+ }, observerOptions);
30
+
31
+ document.querySelectorAll('.animate-on-scroll').forEach(el => {
32
+ observer.observe(el);
33
+ });
34
+
35
+ // Add animation classes to elements
36
+ document.addEventListener('DOMContentLoaded', function() {
37
+ // Add animation classes to feature cards
38
+ document.querySelectorAll('.grid > div').forEach((card, index) => {
39
+ card.classList.add('animate-on-scroll');
40
+ card.style.transitionDelay = `${index * 0.1}s`;
41
+ });
42
+
43
+ // Add animation to how-it-works steps
44
+ document.querySelectorAll('.flex .flex-shrink-0').forEach((step, index) => {
45
+ step.parentElement.classList.add('animate-on-scroll');
46
+ step.parentElement.style.transitionDelay = `${index * 0.2}s`;
47
+ });
48
+ });
49
+
50
+ // Animation CSS (added dynamically)
51
+ const style = document.createElement('style');
52
+ style.textContent = `
53
+ @keyframes fadeInUp {
54
+ from {
55
+ opacity: 0;
56
+ transform: translateY(30px);
57
+ }
58
+ to {
59
+ opacity: 1;
60
+ transform: translateY(0);
61
+ }
62
+ }
63
+
64
+ .animate-fade-in-up {
65
+ animation: fadeInUp 0.6s ease-out forwards;
66
+ }
67
+
68
+ .animate-on-scroll {
69
+ opacity: 0;
70
+ }
71
+ `;
72
+ document.head.appendChild(style);
style.css CHANGED
@@ -1,28 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
2
+
3
+ :root {
4
+ --primary-color: #3b82f6; /* blue-500 */
5
+ --secondary-color: #8b5cf6; /* violet-500 */
6
+ }
7
+
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+
14
  body {
15
+ font-family: 'Inter', sans-serif;
16
+ line-height: 1.6;
17
+ }
18
+
19
+ /* Custom utility classes */
20
+ .bg-primary {
21
+ background-color: var(--primary-color);
22
+ }
23
+
24
+ .text-primary {
25
+ color: var(--primary-color);
26
+ }
27
+
28
+ .bg-secondary {
29
+ background-color: var(--secondary-color);
30
+ }
31
+
32
+ .text-secondary {
33
+ color: var(--secondary-color);
34
+ }
35
+
36
+ /* Responsive adjustments */
37
+ @media (max-width: 768px) {
38
+ .md\:text-6xl {
39
+ font-size: 2.5rem;
40
+ }
41
+
42
+ .md\:text-4xl {
43
+ font-size: 2rem;
44
+ }
45
  }
46
 
47
+ /* Animation for interactive elements */
48
+ .hover-scale {
49
+ transition: transform 0.3s ease;
50
  }
51
 
52
+ .hover-scale:hover {
53
+ transform: scale(1.05);
 
 
 
54
  }
55
 
56
+ /* Custom button styles */
57
+ .btn-primary {
58
+ background-color: var(--primary-color);
59
+ color: white;
60
+ padding: 0.75rem 1.5rem;
61
+ border-radius: 9999px;
62
+ font-weight: 600;
63
+ transition: all 0.3s ease;
64
  }
65
 
66
+ .btn-primary:hover {
67
+ background-color: #2563eb;
68
+ transform: translateY(-2px);
69
+ box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.25);
70
  }
71
+
72
+ .btn-secondary {
73
+ background-color: var(--secondary-color);
74
+ color: white;
75
+ padding: 0.75rem 1.5rem;
76
+ border-radius: 9999px;
77
+ font-weight: 600;
78
+ transition: all 0.3s ease;
79
+ }
80
+
81
+ .btn-secondary:hover {
82
+ background-color: #7c3aed;
83
+ transform: translateY(-2px);
84
+ box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.25);
85
+ }
86
+
87
+ /* Section spacing */
88
+ section {
89
+ scroll-margin-top: 80px;
90
+ }