Twinory commited on
Commit
c349726
·
verified ·
1 Parent(s): 34c5a89

I don't need much information in the homepage as text. Just the tagline and a sentence as it is now, remaining info in other tabs. I need the headers in the main page (Home, About) to be more enhanced and bigger font, more futuristic look.

Browse files
Files changed (5) hide show
  1. README.md +9 -5
  2. about.html +231 -0
  3. contact.html +258 -0
  4. index.html +235 -18
  5. services.html +325 -0
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 🌍
4
- colorFrom: gray
5
- colorTo: yellow
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: undefined
3
+ colorFrom: pink
4
+ colorTo: gray
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://deepsite.hf.co).
14
+
about.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>About Twinory | Amazon Seller Experts</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
13
+ <style>
14
+ body {
15
+ font-family: 'Poppins', sans-serif;
16
+ color: #FFFFFF;
17
+ background-color: #0D0D0D;
18
+ }
19
+ h1, h2, h3 {
20
+ font-family: 'Montserrat', sans-serif;
21
+ }
22
+ .hero-bg {
23
+ background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
24
+ }
25
+ .mission-card {
26
+ border-left: 4px solid #FF9900;
27
+ }
28
+ .vision-card {
29
+ border-left: 4px solid #FFFFFF;
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="min-h-screen">
34
+ <!-- Navigation -->
35
+ <nav class="fixed w-full z-50 bg-black bg-opacity-90 border-b border-gray-800">
36
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
37
+ <div class="flex justify-between h-16">
38
+ <div class="flex items-center">
39
+ <div class="flex-shrink-0 flex items-center">
40
+ <span class="text-white font-bold text-2xl">TWINORY</span>
41
+ </div>
42
+ </div>
43
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
44
+ <a href="index.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
45
+ <a href="#" class="text-white px-3 py-2 rounded-md text-sm font-medium hover:text-orange-400">About</a>
46
+ <a href="services.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Services</a>
47
+ <a href="contact.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
48
+ <a href="#" class="ml-4 bg-[#FF9900] text-black px-6 py-2 rounded-md font-medium hover:bg-orange-600 transition duration-300">Get Started</a>
49
+ </div>
50
+ <div class="-mr-2 flex items-center md:hidden">
51
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
52
+ <span class="sr-only">Open main menu</span>
53
+ <i data-feather="menu"></i>
54
+ </button>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </nav>
59
+
60
+ <!-- Hero Section -->
61
+ <div class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
62
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
63
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
64
+ WHO WE ARE
65
+ </h1>
66
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto">
67
+ Twinory is a modern e-commerce consultancy dedicated to helping Amazon sellers grow responsibly.
68
+ </p>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- About Content -->
73
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
74
+ <div class="text-center mb-16">
75
+ <p class="text-xl md:text-2xl text-gray-300 max-w-4xl mx-auto">
76
+ We combine data analytics, SEO precision, and policy-aligned expertise to position your products for success.
77
+ </p>
78
+ </div>
79
+
80
+ <!-- Mission & Vision -->
81
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-20">
82
+ <div class="mission-card bg-gray-900 p-8 rounded-lg">
83
+ <div class="flex items-center mb-6">
84
+ <div class="bg-[#FF9900] p-3 rounded-full mr-4">
85
+ <i data-feather="target" class="text-white w-6 h-6"></i>
86
+ </div>
87
+ <h3 class="text-2xl font-bold">Our Mission</h3>
88
+ </div>
89
+ <p class="text-gray-400">
90
+ Helping sellers achieve growth through ethical, intelligent, and sustainable listing practices. We believe in winning the right way by mastering Amazon's rules rather than bending them.
91
+ </p>
92
+ </div>
93
+ <div class="vision-card bg-gray-900 p-8 rounded-lg">
94
+ <div class="flex items-center mb-6">
95
+ <div class="bg-white p-3 rounded-full mr-4">
96
+ <i data-feather="eye" class="text-black w-6 h-6"></i>
97
+ </div>
98
+ <h3 class="text-2xl font-bold">Our Vision</h3>
99
+ </div>
100
+ <p class="text-gray-400">
101
+ Building a marketplace where compliance and commercial success go hand in hand. We envision an Amazon ecosystem where ethical sellers thrive through superior strategy and execution.
102
+ </p>
103
+ </div>
104
+ </div>
105
+
106
+ <!-- Meet Sam -->
107
+ <div class="bg-gray-900 rounded-xl overflow-hidden mb-20">
108
+ <div class="grid grid-cols-1 lg:grid-cols-2">
109
+ <div class="p-8 lg:p-12">
110
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Meet Sam — Twinory's Virtual Consultant</h2>
111
+ <p class="text-gray-400 text-lg mb-6">
112
+ Sam represents the Twinory team's collective experience. Through careful research and insight, Sam helps you place products smartly and stay ahead of competition.
113
+ </p>
114
+ <div class="flex items-center">
115
+ <div class="bg-[#FF9900] p-2 rounded-full mr-4">
116
+ <i data-feather="check" class="text-white w-5 h-5"></i>
117
+ </div>
118
+ <p class="text-gray-300">15+ years combined Amazon marketplace experience</p>
119
+ </div>
120
+ <div class="flex items-center mt-4">
121
+ <div class="bg-[#FF9900] p-2 rounded-full mr-4">
122
+ <i data-feather="check" class="text-white w-5 h-5"></i>
123
+ </div>
124
+ <p class="text-gray-300">100+ successful product launches</p>
125
+ </div>
126
+ <div class="flex items-center mt-4">
127
+ <div class="bg-[#FF9900] p-2 rounded-full mr-4">
128
+ <i data-feather="check" class="text-white w-5 h-5"></i>
129
+ </div>
130
+ <p class="text-gray-300">Policy compliance as a core principle</p>
131
+ </div>
132
+ </div>
133
+ <div class="order-first lg:order-last">
134
+ <img src="http://static.photos/people/800x600/42" alt="Sam - Twinory Consultant" class="w-full h-full object-cover">
135
+ </div>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Values -->
140
+ <div class="text-center mb-20">
141
+ <h2 class="text-3xl md:text-4xl font-bold mb-12">Our Core Values</h2>
142
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
143
+ <div class="bg-gray-900 p-8 rounded-lg">
144
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
145
+ <i data-feather="shield" class="text-[#FF9900] w-8 h-8"></i>
146
+ </div>
147
+ <h3 class="text-xl font-bold mb-3">Integrity</h3>
148
+ <p class="text-gray-400">
149
+ We only recommend strategies that comply with Amazon's policies and stand the test of time.
150
+ </p>
151
+ </div>
152
+ <div class="bg-gray-900 p-8 rounded-lg">
153
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
154
+ <i data-feather="bar-chart-2" class="text-[#FF9900] w-8 h-8"></i>
155
+ </div>
156
+ <h3 class="text-xl font-bold mb-3">Data-Driven</h3>
157
+ <p class="text-gray-400">
158
+ Every recommendation is backed by market data and performance analytics.
159
+ </p>
160
+ </div>
161
+ <div class="bg-gray-900 p-8 rounded-lg">
162
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
163
+ <i data-feather="zap" class="text-[#FF9900] w-8 h-8"></i>
164
+ </div>
165
+ <h3 class="text-xl font-bold mb-3">Results-Oriented</h3>
166
+ <p class="text-gray-400">
167
+ We measure our success by your growth metrics and long-term profitability.
168
+ </p>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Final Callout -->
174
+ <div class="bg-[#FF9900] rounded-xl p-8 text-center">
175
+ <h3 class="text-2xl md:text-3xl font-bold mb-4 text-black">We help honest sellers win</h3>
176
+ <p class="text-xl text-black mb-6">Not by bending the rules, but by mastering them.</p>
177
+ <a href="services.html" class="inline-block bg-black text-white px-8 py-3 rounded-md font-bold text-lg hover:bg-gray-900 transition duration-300">Explore Our Services</a>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Footer -->
182
+ <footer class="bg-black py-12">
183
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
184
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
185
+ <div class="md:col-span-2">
186
+ <h3 class="text-2xl font-bold mb-4">TWINORY</h3>
187
+ <p class="text-gray-400">Amazon Seller Growth & Compliance Solutions.</p>
188
+ <div class="flex space-x-4 mt-4">
189
+ <a href="#" class="text-gray-400 hover:text-white">
190
+ <i data-feather="facebook"></i>
191
+ </a>
192
+ <a href="#" class="text-gray-400 hover:text-white">
193
+ <i data-feather="twitter"></i>
194
+ </a>
195
+ <a href="#" class="text-gray-400 hover:text-white">
196
+ <i data-feather="linkedin"></i>
197
+ </a>
198
+ <a href="#" class="text-gray-400 hover:text-white">
199
+ <i data-feather="instagram"></i>
200
+ </a>
201
+ </div>
202
+ </div>
203
+ <div>
204
+ <h4 class="text-white font-bold mb-4">Quick Links</h4>
205
+ <ul class="space-y-2">
206
+ <li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
207
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
208
+ <li><a href="services.html" class="text-gray-400 hover:text-white">Services</a></li>
209
+ <li><a href="contact.html" class="text-gray-400 hover:text-white">Contact</a></li>
210
+ </ul>
211
+ </div>
212
+ <div>
213
+ <h4 class="text-white font-bold mb-4">Legal</h4>
214
+ <ul class="space-y-2">
215
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
216
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
217
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
218
+ </ul>
219
+ </div>
220
+ </div>
221
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
222
+ <p>&copy; 2023 TWINORY LLC. All rights reserved.</p>
223
+ </div>
224
+ </div>
225
+ </footer>
226
+
227
+ <script>
228
+ feather.replace();
229
+ </script>
230
+ </body>
231
+ </html>
contact.html ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Twinory | Amazon Seller Experts</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
13
+ <style>
14
+ body {
15
+ font-family: 'Poppins', sans-serif;
16
+ color: #FFFFFF;
17
+ background-color: #0D0D0D;
18
+ }
19
+ h1, h2, h3 {
20
+ font-family: 'Montserrat', sans-serif;
21
+ }
22
+ .hero-bg {
23
+ background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
24
+ }
25
+ .input-field {
26
+ background-color: #1A1A1A;
27
+ border: 1px solid #333333;
28
+ }
29
+ .input-field:focus {
30
+ border-color: #FF9900;
31
+ box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="min-h-screen">
36
+ <!-- Navigation -->
37
+ <nav class="fixed w-full z-50 bg-black bg-opacity-90 border-b border-gray-800">
38
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
39
+ <div class="flex justify-between h-16">
40
+ <div class="flex items-center">
41
+ <div class="flex-shrink-0 flex items-center">
42
+ <span class="text-white font-bold text-2xl">TWINORY</span>
43
+ </div>
44
+ </div>
45
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
46
+ <a href="index.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
47
+ <a href="about.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
48
+ <a href="services.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Services</a>
49
+ <a href="#" class="text-white px-3 py-2 rounded-md text-sm font-medium hover:text-orange-400">Contact</a>
50
+ <a href="#" class="ml-4 bg-[#FF9900] text-black px-6 py-2 rounded-md font-medium hover:bg-orange-600 transition duration-300">Get Started</a>
51
+ </div>
52
+ <div class="-mr-2 flex items-center md:hidden">
53
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
54
+ <span class="sr-only">Open main menu</span>
55
+ <i data-feather="menu"></i>
56
+ </button>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </nav>
61
+
62
+ <!-- Hero Section -->
63
+ <div class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
64
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
65
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
66
+ GET IN TOUCH
67
+ </h1>
68
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto">
69
+ Ready to grow your Amazon business? Let's talk about how we can help.
70
+ </p>
71
+ </div>
72
+ </div>
73
+
74
+ <!-- Contact Form -->
75
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
76
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
77
+ <div class="bg-gray-900 rounded-xl p-8 lg:p-12">
78
+ <h2 class="text-2xl md:text-3xl font-bold mb-8">Send Us a Message</h2>
79
+ <form id="contactForm" class="space-y-6">
80
+ <div>
81
+ <label for="fullName" class="block text-sm font-medium text-gray-400 mb-2">Full Name</label>
82
+ <input type="text" id="fullName" name="fullName" required class="input-field w-full px-4 py-3 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-[#FF9900]">
83
+ </div>
84
+ <div>
85
+ <label for="email" class="block text-sm font-medium text-gray-400 mb-2">Email Address</label>
86
+ <input type="email" id="email" name="email" required class="input-field w-full px-4 py-3 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-[#FF9900]">
87
+ </div>
88
+ <div>
89
+ <label for="phone" class="block text-sm font-medium text-gray-400 mb-2">Phone Number (Optional)</label>
90
+ <input type="tel" id="phone" name="phone" class="input-field w-full px-4 py-3 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-[#FF9900]">
91
+ </div>
92
+ <div>
93
+ <label for="business" class="block text-sm font-medium text-gray-400 mb-2">Business Name</label>
94
+ <input type="text" id="business" name="business" class="input-field w-full px-4 py-3 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-[#FF9900]">
95
+ </div>
96
+ <div>
97
+ <label for="message" class="block text-sm font-medium text-gray-400 mb-2">Your Message</label>
98
+ <textarea id="message" name="message" rows="5" required class="input-field w-full px-4 py-3 rounded-md text-white focus:outline-none focus:ring-2 focus:ring-[#FF9900]"></textarea>
99
+ </div>
100
+ <div>
101
+ <button type="submit" class="w-full bg-[#FF9900] text-black px-6 py-4 rounded-md font-bold text-lg hover:bg-orange-600 transition duration-300">
102
+ Send Message
103
+ </button>
104
+ </div>
105
+ </form>
106
+ <div id="formSuccess" class="hidden mt-6 p-4 bg-green-900 bg-opacity-50 rounded-md">
107
+ <div class="flex items-center">
108
+ <i data-feather="check-circle" class="text-green-400 mr-3"></i>
109
+ <p class="text-green-400">Thank you for your message! We'll get back to you shortly.</p>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ <div class="bg-gray-900 rounded-xl p-8 lg:p-12">
114
+ <h2 class="text-2xl md:text-3xl font-bold mb-8">Contact Information</h2>
115
+ <div class="space-y-6">
116
+ <div class="flex items-start">
117
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-3 rounded-full">
118
+ <i data-feather="mail" class="text-[#FF9900] w-5 h-5"></i>
119
+ </div>
120
+ <div class="ml-4">
121
+ <h3 class="text-lg font-bold mb-1">Email Us</h3>
122
+ <p class="text-gray-400">info@twinory.com</p>
123
+ </div>
124
+ </div>
125
+ <div class="flex items-start">
126
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-3 rounded-full">
127
+ <i data-feather="clock" class="text-[#FF9900] w-5 h-5"></i>
128
+ </div>
129
+ <div class="ml-4">
130
+ <h3 class="text-lg font-bold mb-1">Business Hours</h3>
131
+ <p class="text-gray-400">Monday - Saturday</p>
132
+ <p class="text-gray-400">9:00 AM - 6:00 PM EST</p>
133
+ </div>
134
+ </div>
135
+ <div class="flex items-start">
136
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-3 rounded-full">
137
+ <i data-feather="message-square" class="text-[#FF9900] w-5 h-5"></i>
138
+ </div>
139
+ <div class="ml-4">
140
+ <h3 class="text-lg font-bold mb-1">Quick Chat</h3>
141
+ <p class="text-gray-400">Have a quick question?</p>
142
+ <button class="mt-2 bg-[#FF9900] text-black px-4 py-2 rounded-md text-sm font-medium hover:bg-orange-600 transition duration-300">
143
+ Start Live Chat
144
+ </button>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <div class="mt-12">
150
+ <h3 class="text-xl font-bold mb-4">Follow Us</h3>
151
+ <div class="flex space-x-4">
152
+ <a href="#" class="bg-gray-800 p-3 rounded-full hover:bg-[#FF9900] hover:text-black transition duration-300">
153
+ <i data-feather="facebook"></i>
154
+ </a>
155
+ <a href="#" class="bg-gray-800 p-3 rounded-full hover:bg-[#FF9900] hover:text-black transition duration-300">
156
+ <i data-feather="twitter"></i>
157
+ </a>
158
+ <a href="#" class="bg-gray-800 p-3 rounded-full hover:bg-[#FF9900] hover:text-black transition duration-300">
159
+ <i data-feather="linkedin"></i>
160
+ </a>
161
+ <a href="#" class="bg-gray-800 p-3 rounded-full hover:bg-[#FF9900] hover:text-black transition duration-300">
162
+ <i data-feather="instagram"></i>
163
+ </a>
164
+ </div>
165
+ </div>
166
+
167
+ <div class="mt-12 bg-black bg-opacity-50 p-6 rounded-xl">
168
+ <h3 class="text-lg font-bold mb-3">Looking for immediate help?</h3>
169
+ <p class="text-gray-400 mb-4">Check out our comprehensive <a href="services.html" class="text-[#FF9900] hover:underline">services page</a> for solutions to common Amazon seller challenges.</p>
170
+ <a href="services.html" class="inline-block bg-[#FF9900] text-black px-6 py-2 rounded-md font-medium hover:bg-orange-600 transition duration-300">Explore Services</a>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Map Section -->
177
+ <div class="bg-black py-12">
178
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
179
+ <h2 class="text-2xl md:text-3xl font-bold text-center mb-12">Our Location</h2>
180
+ <div class="bg-gray-900 rounded-xl overflow-hidden">
181
+ <!-- Placeholder for map -->
182
+ <div class="h-96 w-full flex items-center justify-center bg-gray-800">
183
+ <div class="text-center">
184
+ <i data-feather="map-pin" class="text-[#FF9900] w-12 h-12 mx-auto mb-4"></i>
185
+ <p class="text-gray-400">We serve Amazon sellers globally</p>
186
+ <p class="text-gray-400 mt-2">Headquarters: New York, NY</p>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Footer -->
194
+ <footer class="bg-black py-12">
195
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
196
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
197
+ <div class="md:col-span-2">
198
+ <h3 class="text-2xl font-bold mb-4">TWINORY</h3>
199
+ <p class="text-gray-400">Amazon Seller Growth & Compliance Solutions.</p>
200
+ <div class="flex space-x-4 mt-4">
201
+ <a href="#" class="text-gray-400 hover:text-white">
202
+ <i data-feather="facebook"></i>
203
+ </a>
204
+ <a href="#" class="text-gray-400 hover:text-white">
205
+ <i data-feather="twitter"></i>
206
+ </a>
207
+ <a href="#" class="text-gray-400 hover:text-white">
208
+ <i data-feather="linkedin"></i>
209
+ </a>
210
+ <a href="#" class="text-gray-400 hover:text-white">
211
+ <i data-feather="instagram"></i>
212
+ </a>
213
+ </div>
214
+ </div>
215
+ <div>
216
+ <h4 class="text-white font-bold mb-4">Quick Links</h4>
217
+ <ul class="space-y-2">
218
+ <li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
219
+ <li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
220
+ <li><a href="services.html" class="text-gray-400 hover:text-white">Services</a></li>
221
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
222
+ </ul>
223
+ </div>
224
+ <div>
225
+ <h4 class="text-white font-bold mb-4">Legal</h4>
226
+ <ul class="space-y-2">
227
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
228
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
229
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
230
+ </ul>
231
+ </div>
232
+ </div>
233
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
234
+ <p>&copy; 2023 TWINORY LLC. All rights reserved.</p>
235
+ </div>
236
+ </div>
237
+ </footer>
238
+
239
+ <script>
240
+ feather.replace();
241
+
242
+ // Simple form submission handler
243
+ document.getElementById('contactForm').addEventListener('submit', function(e) {
244
+ e.preventDefault();
245
+
246
+ // Here you would typically send the form data to a server
247
+ // For this example, we'll just show the success message
248
+ document.getElementById('formSuccess').classList.remove('hidden');
249
+ document.getElementById('contactForm').reset();
250
+
251
+ // Hide success message after 5 seconds
252
+ setTimeout(function() {
253
+ document.getElementById('formSuccess').classList.add('hidden');
254
+ }, 5000);
255
+ });
256
+ </script>
257
+ </body>
258
+ </html>
index.html CHANGED
@@ -1,19 +1,236 @@
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>Twinory | Amazon Seller Consulting</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
11
+ <link rel="preconnect" href="https://fonts.googleapis.com">
12
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
13
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
14
+ <style>
15
+ body {
16
+ font-family: 'Poppins', sans-serif;
17
+ color: #FFFFFF;
18
+ background-color: #0D0D0D;
19
+ }
20
+ h1, h2, h3 {
21
+ font-family: 'Montserrat', sans-serif;
22
+ }
23
+ .hero-bg {
24
+ background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
25
+ }
26
+ .cta-button {
27
+ transition: all 0.3s ease;
28
+ }
29
+ .cta-button:hover {
30
+ transform: translateY(-3px);
31
+ box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
32
+ }
33
+ .service-card:hover {
34
+ transform: translateY(-5px);
35
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="min-h-screen">
40
+ <!-- Navigation -->
41
+ <nav class="fixed w-full z-50 bg-black bg-opacity-90 border-b border-gray-800">
42
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
43
+ <div class="flex justify-between h-20">
44
+ <div class="flex items-center">
45
+ <div class="flex-shrink-0 flex items-center">
46
+ <span class="text-white font-bold text-3xl tracking-tighter">TWINORY</span>
47
+ </div>
48
+ </div>
49
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-10">
50
+ <a href="#" class="text-white px-4 py-3 rounded-md text-lg font-bold tracking-wide hover:text-[#FF9900] transition-all duration-300 transform hover:scale-105">HOME</a>
51
+ <a href="about.html" class="text-gray-300 px-4 py-3 rounded-md text-lg font-bold tracking-wide hover:text-white hover:bg-black hover:bg-opacity-20 transition-all duration-300 transform hover:scale-105">ABOUT</a>
52
+ <a href="services.html" class="text-gray-300 px-4 py-3 rounded-md text-lg font-bold tracking-wide hover:text-white hover:bg-black hover:bg-opacity-20 transition-all duration-300 transform hover:scale-105">SERVICES</a>
53
+ <a href="contact.html" class="text-gray-300 px-4 py-3 rounded-md text-lg font-bold tracking-wide hover:text-white hover:bg-black hover:bg-opacity-20 transition-all duration-300 transform hover:scale-105">CONTACT</a>
54
+ <a href="#" class="ml-6 bg-[#FF9900] text-black px-8 py-3 rounded-md font-bold text-lg tracking-wide hover:bg-[#FF5100] transition-all duration-300 transform hover:scale-105 shadow-lg shadow-[#FF9900]/30">GET STARTED</a>
55
+ </div>
56
+ <div class="-mr-2 flex items-center md:hidden">
57
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
58
+ <span class="sr-only">Open main menu</span>
59
+ <i data-feather="menu"></i>
60
+ </button>
61
+ </div>
62
+ </div>
63
+ </div>
64
+ </nav>
65
+
66
+ <!-- Hero Section -->
67
+ <div id="hero" class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
68
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
69
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
70
+ <div class="mb-12 lg:mb-0">
71
+ <h1 class="text-5xl md:text-7xl lg:text-8xl font-bold leading-tight mb-6 bg-clip-text text-transparent bg-gradient-to-r from-[#FF9900] to-[#FF5100]">
72
+ JUST LIST IT!
73
+ </h1>
74
+ <p class="text-2xl md:text-3xl text-gray-300 mb-8 font-light">
75
+ Elevate your Amazon presence with our cutting-edge seller solutions.
76
+ </p>
77
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
78
+ <a href="services.html" class="cta-button bg-[#FF9900] text-black px-8 py-4 rounded-md font-bold text-lg hover:bg-orange-600">Start Your Listing Journey</a>
79
+ </div>
80
+ </div>
81
+ <div class="relative">
82
+ <img src="http://static.photos/technology/1200x630/42" alt="Amazon Analytics Dashboard" class="rounded-xl shadow-2xl border border-gray-700">
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+
88
+ <!-- Highlights Section -->
89
+ <div class="bg-black py-16">
90
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
91
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
92
+ <div class="bg-gray-900 rounded-xl p-8 text-center transition duration-300 hover:border-b-4 hover:border-[#FF9900]">
93
+ <div class="flex justify-center mb-4">
94
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full">
95
+ <i data-feather="user" class="text-[#FF9900] w-8 h-8"></i>
96
+ </div>
97
+ </div>
98
+ <h3 class="text-xl font-bold mb-2">Amazon Seller Account Setup</h3>
99
+ <p class="text-gray-400">Made easy with our expert guidance</p>
100
+ </div>
101
+ <div class="bg-gray-900 rounded-xl p-8 text-center transition duration-300 hover:border-b-4 hover:border-[#FF9900]">
102
+ <div class="flex justify-center mb-4">
103
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full">
104
+ <i data-feather="search" class="text-[#FF9900] w-8 h-8"></i>
105
+ </div>
106
+ </div>
107
+ <h3 class="text-xl font-bold mb-2">Strategic Product Research</h3>
108
+ <p class="text-gray-400">Find winning products effortlessly</p>
109
+ </div>
110
+ <div class="bg-gray-900 rounded-xl p-8 text-center transition duration-300 hover:border-b-4 hover:border-[#FF9900]">
111
+ <div class="flex justify-center mb-4">
112
+ <div class="bg-[#FF9900] bg-opacity-10 p-4 rounded-full">
113
+ <i data-feather="trending-up" class="text-[#FF9900] w-8 h-8"></i>
114
+ </div>
115
+ </div>
116
+ <h3 class="text-xl font-bold mb-2">Performance Optimization</h3>
117
+ <p class="text-gray-400">Boost your rankings and sales</p>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+
123
+ <!-- Why Choose Us Section -->
124
+ <div class="bg-gray-900 py-20">
125
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
126
+ <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
127
+ <div class="mb-12 lg:mb-0">
128
+ <img src="http://static.photos/office/1024x576/123" alt="Amazon Analytics" class="rounded-xl shadow-2xl border border-gray-700">
129
+ </div>
130
+ <div>
131
+ <h2 class="text-3xl md:text-4xl font-bold mb-8">Why Choose Twinory?</h2>
132
+ <ul class="space-y-6">
133
+ <li class="flex items-start">
134
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-2 rounded-full">
135
+ <i data-feather="check-circle" class="text-[#FF9900] w-5 h-5"></i>
136
+ </div>
137
+ <p class="ml-3 text-lg text-gray-300">
138
+ <span class="font-bold">Deep marketplace insight</span> from professional compliance experts
139
+ </p>
140
+ </li>
141
+ <li class="flex items-start">
142
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-2 rounded-full">
143
+ <i data-feather="check-circle" class="text-[#FF9900] w-5 h-5"></i>
144
+ </div>
145
+ <p class="ml-3 text-lg text-gray-300">
146
+ <span class="font-bold">100% policy-aligned strategies</span> for sustainable growth
147
+ </p>
148
+ </li>
149
+ <li class="flex items-start">
150
+ <div class="flex-shrink-0 bg-[#FF9900] bg-opacity-10 p-2 rounded-full">
151
+ <i data-feather="check-circle" class="text-[#FF9900] w-5 h-5"></i>
152
+ </div>
153
+ <p class="ml-3 text-lg text-gray-300">
154
+ <span class="font-bold">Custom guidance</span> tuned for every seller's goals
155
+ </p>
156
+ </li>
157
+ </ul>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Call to Action -->
164
+ <div class="bg-[#FF9900] py-16">
165
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
166
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 text-black">Ready to take your Amazon store to the next level?</h2>
167
+ <p class="text-xl text-black mb-8">Let's build your success—ethically and effectively.</p>
168
+ <a href="contact.html" class="bg-black text-white px-8 py-3 rounded-md font-bold text-lg hover:bg-gray-900 transition duration-300">Contact Us</a>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Footer -->
173
+ <footer class="bg-black py-12">
174
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
175
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
176
+ <div class="md:col-span-2">
177
+ <h3 class="text-2xl font-bold mb-4">TWINORY</h3>
178
+ <p class="text-gray-400">Amazon Seller Growth & Compliance Solutions.</p>
179
+ <div class="flex space-x-4 mt-4">
180
+ <a href="#" class="text-gray-400 hover:text-white">
181
+ <i data-feather="facebook"></i>
182
+ </a>
183
+ <a href="#" class="text-gray-400 hover:text-white">
184
+ <i data-feather="twitter"></i>
185
+ </a>
186
+ <a href="#" class="text-gray-400 hover:text-white">
187
+ <i data-feather="linkedin"></i>
188
+ </a>
189
+ <a href="#" class="text-gray-400 hover:text-white">
190
+ <i data-feather="instagram"></i>
191
+ </a>
192
+ </div>
193
+ </div>
194
+ <div>
195
+ <h4 class="text-white font-bold mb-4">Quick Links</h4>
196
+ <ul class="space-y-2">
197
+ <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
198
+ <li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
199
+ <li><a href="services.html" class="text-gray-400 hover:text-white">Services</a></li>
200
+ <li><a href="contact.html" class="text-gray-400 hover:text-white">Contact</a></li>
201
+ </ul>
202
+ </div>
203
+ <div>
204
+ <h4 class="text-white font-bold mb-4">Legal</h4>
205
+ <ul class="space-y-2">
206
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
207
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
208
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
209
+ </ul>
210
+ </div>
211
+ </div>
212
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
213
+ <p>&copy; 2023 TWINORY LLC. All rights reserved.</p>
214
+ </div>
215
+ </div>
216
+ </footer>
217
+ <script>
218
+ feather.replace();
219
+ VANTA.NET({
220
+ el: "#hero",
221
+ mouseControls: true,
222
+ touchControls: true,
223
+ gyroControls: false,
224
+ minHeight: 200.00,
225
+ minWidth: 200.00,
226
+ scale: 1.00,
227
+ scaleMobile: 1.00,
228
+ color: 0xff9900,
229
+ backgroundColor: 0x0d0d0d,
230
+ points: 16.00,
231
+ maxDistance: 26.00,
232
+ spacing: 20.00
233
+ })
234
+ </script>
235
+ </body>
236
  </html>
services.html ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Services | Twinory Amazon Consulting</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
13
+ <style>
14
+ body {
15
+ font-family: 'Poppins', sans-serif;
16
+ color: #FFFFFF;
17
+ background-color: #0D0D0D;
18
+ }
19
+ h1, h2, h3 {
20
+ font-family: 'Montserrat', sans-serif;
21
+ }
22
+ .hero-bg {
23
+ background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
24
+ }
25
+ .service-card {
26
+ transition: all 0.3s ease;
27
+ border-bottom: 3px solid transparent;
28
+ }
29
+ .service-card:hover {
30
+ transform: translateY(-5px);
31
+ border-bottom-color: #FF9900;
32
+ }
33
+ .service-icon {
34
+ background: linear-gradient(135deg, rgba(255,153,0,0.1) 0%, rgba(255,153,0,0.2) 100%);
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="min-h-screen">
39
+ <!-- Navigation -->
40
+ <nav class="fixed w-full z-50 bg-black bg-opacity-90 border-b border-gray-800">
41
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
42
+ <div class="flex justify-between h-16">
43
+ <div class="flex items-center">
44
+ <div class="flex-shrink-0 flex items-center">
45
+ <span class="text-white font-bold text-2xl">TWINORY</span>
46
+ </div>
47
+ </div>
48
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
49
+ <a href="index.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
50
+ <a href="about.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">About</a>
51
+ <a href="#" class="text-white px-3 py-2 rounded-md text-sm font-medium hover:text-orange-400">Services</a>
52
+ <a href="contact.html" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a>
53
+ <a href="#" class="ml-4 bg-[#FF9900] text-black px-6 py-2 rounded-md font-medium hover:bg-orange-600 transition duration-300">Get Started</a>
54
+ </div>
55
+ <div class="-mr-2 flex items-center md:hidden">
56
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
57
+ <span class="sr-only">Open main menu</span>
58
+ <i data-feather="menu"></i>
59
+ </button>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </nav>
64
+
65
+ <!-- Hero Section -->
66
+ <div class="hero-bg pt-32 pb-20 md:pt-40 md:pb-32">
67
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
68
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
69
+ OUR SERVICES
70
+ </h1>
71
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto">
72
+ Professional Amazon Seller Services — Powering Your Growth, Step by Step.
73
+ </p>
74
+ </div>
75
+ </div>
76
+
77
+ <!-- Services Grid -->
78
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
79
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
80
+ <!-- Service 1 -->
81
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
82
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
83
+ <i data-feather="user-plus" class="text-[#FF9900] w-8 h-8"></i>
84
+ </div>
85
+ <h3 class="text-xl font-bold mb-3">Amazon Seller Account Creation</h3>
86
+ <p class="text-gray-400">
87
+ Expert guidance from setup to verified account launch—ensuring compliance from day one.
88
+ </p>
89
+ </div>
90
+
91
+ <!-- Service 2 -->
92
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
93
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
94
+ <i data-feather="package" class="text-[#FF9900] w-8 h-8"></i>
95
+ </div>
96
+ <h3 class="text-xl font-bold mb-3">Product Research</h3>
97
+ <p class="text-gray-400">
98
+ Discover high-profit, low-competition product opportunities using in-depth market analytics.
99
+ </p>
100
+ </div>
101
+
102
+ <!-- Service 3 -->
103
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
104
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
105
+ <i data-feather="search" class="text-[#FF9900] w-8 h-8"></i>
106
+ </div>
107
+ <h3 class="text-xl font-bold mb-3">Keyword Research</h3>
108
+ <p class="text-gray-400">
109
+ Identify search-optimized keywords to increase your visibility and drive organic conversions.
110
+ </p>
111
+ </div>
112
+
113
+ <!-- Service 4 -->
114
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
115
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
116
+ <i data-feather="bar-chart-2" class="text-[#FF9900] w-8 h-8"></i>
117
+ </div>
118
+ <h3 class="text-xl font-bold mb-3">Listing Optimization (SEO-Focused)</h3>
119
+ <p class="text-gray-400">
120
+ Enhance product titles, descriptions, and visuals for better ranking and conversion.
121
+ </p>
122
+ </div>
123
+
124
+ <!-- Service 5 -->
125
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
126
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
127
+ <i data-feather="layers" class="text-[#FF9900] w-8 h-8"></i>
128
+ </div>
129
+ <h3 class="text-xl font-bold mb-3">Competitor & Product Deep Analysis</h3>
130
+ <p class="text-gray-400">
131
+ Uncover strengths, weaknesses, and gaps in competitor listings to position your offers smarter.
132
+ </p>
133
+ </div>
134
+
135
+ <!-- Service 6 -->
136
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
137
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
138
+ <i data-feather="rocket" class="text-[#FF9900] w-8 h-8"></i>
139
+ </div>
140
+ <h3 class="text-xl font-bold mb-3">Product Launch & Ranking Strategies</h3>
141
+ <p class="text-gray-400">
142
+ Proven, data-based methods to introduce products and sustain market position ethically.
143
+ </p>
144
+ </div>
145
+
146
+ <!-- Service 7 -->
147
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
148
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
149
+ <i data-feather="clipboard" class="text-[#FF9900] w-8 h-8"></i>
150
+ </div>
151
+ <h3 class="text-xl font-bold mb-3">Listing Audit & Optimization Check</h3>
152
+ <p class="text-gray-400">
153
+ Comprehensive diagnostics of your current listings; actionable improvements to maximize CTR and sales.
154
+ </p>
155
+ </div>
156
+
157
+ <!-- Service 8 -->
158
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
159
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
160
+ <i data-feather="dollar-sign" class="text-[#FF9900] w-8 h-8"></i>
161
+ </div>
162
+ <h3 class="text-xl font-bold mb-3">Amazon PPC Keyword Research</h3>
163
+ <p class="text-gray-400">
164
+ Pay-per-click campaign optimization with precise keyword targeting to reduce ACoS.
165
+ </p>
166
+ </div>
167
+
168
+ <!-- Service 9 -->
169
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
170
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
171
+ <i data-feather="calendar" class="text-[#FF9900] w-8 h-8"></i>
172
+ </div>
173
+ <h3 class="text-xl font-bold mb-3">Seasonal and Trend Research</h3>
174
+ <p class="text-gray-400">
175
+ Insights on emerging niches and seasonal demand spikes before they peak.
176
+ </p>
177
+ </div>
178
+
179
+ <!-- Service 10 -->
180
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
181
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
182
+ <i data-feather="award" class="text-[#FF9900] w-8 h-8"></i>
183
+ </div>
184
+ <h3 class="text-xl font-bold mb-3">Market & Brand Analysis</h3>
185
+ <p class="text-gray-400">
186
+ Evaluate brand identity, positioning, and product-category performance.
187
+ </p>
188
+ </div>
189
+
190
+ <!-- Service 11 -->
191
+ <div class="service-card bg-gray-900 p-8 rounded-lg">
192
+ <div class="service-icon w-16 h-16 rounded-lg flex items-center justify-center mb-6">
193
+ <i data-feather="check-circle" class="text-[#FF9900] w-8 h-8"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold mb-3">Amazon Product Validation</h3>
196
+ <p class="text-gray-400">
197
+ Verify product viability through cost, margin, and competitive feasibility analysis.
198
+ </p>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Process Section -->
203
+ <div class="mt-20 mb-16">
204
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Our Proven Process</h2>
205
+ <div class="relative">
206
+ <div class="hidden lg:block absolute left-1/2 transform -translate-x-1/2 h-full w-0.5 bg-gray-700"></div>
207
+ <div class="space-y-12 lg:space-y-0">
208
+ <!-- Step 1 -->
209
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
210
+ <div class="lg:order-last lg:pl-8">
211
+ <h3 class="text-2xl font-bold mb-4">Discovery & Strategy</h3>
212
+ <p class="text-gray-400">
213
+ We begin by understanding your business goals, current challenges, and marketplace position. Our team conducts preliminary research to identify the most strategic approach for your products.
214
+ </p>
215
+ </div>
216
+ <div class="relative lg:pr-8 mt-8 lg:mt-0">
217
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-[#FF9900] text-black font-bold text-xl absolute left-1/2 transform -translate-x-1/2 lg:left-auto lg:right-0 lg:translate-x-0">1</div>
218
+ <img src="http://static.photos/workspace/800x500/1" alt="Discovery" class="rounded-xl shadow-xl border border-gray-700">
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Step 2 -->
223
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center mt-12 lg:mt-0">
224
+ <div class="lg:pr-8">
225
+ <h3 class="text-2xl font-bold mb-4">Research & Analysis</h3>
226
+ <p class="text-gray-400">
227
+ Our experts dive deep into market trends, competitor analysis, and keyword research. We identify profitable opportunities and potential pitfalls specific to your product category.
228
+ </p>
229
+ </div>
230
+ <div class="relative lg:pl-8 mt-8 lg:mt-0">
231
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-[#FF9900] text-black font-bold text-xl absolute left-1/2 transform -translate-x-1/2 lg:left-0 lg:translate-x-0">2</div>
232
+ <img src="http://static.photos/technology/800x500/2" alt="Research" class="rounded-xl shadow-xl border border-gray-700">
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Step 3 -->
237
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center mt-12 lg:mt-0">
238
+ <div class="lg:order-last lg:pl-8">
239
+ <h3 class="text-2xl font-bold mb-4">Implementation</h3>
240
+ <p class="text-gray-400">
241
+ With the strategy defined, we optimize your product listings, set up advertising campaigns, and implement all necessary changes to maximize your Amazon presence.
242
+ </p>
243
+ </div>
244
+ <div class="relative lg:pr-8 mt-8 lg:mt-0">
245
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-[#FF9900] text-black font-bold text-xl absolute left-1/2 transform -translate-x-1/2 lg:left-auto lg:right-0 lg:translate-x-0">3</div>
246
+ <img src="http://static.photos/office/800x500/3" alt="Implementation" class="rounded-xl shadow-xl border border-gray-700">
247
+ </div>
248
+ </div>
249
+
250
+ <!-- Step 4 -->
251
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center mt-12 lg:mt-0">
252
+ <div class="lg:pr-8">
253
+ <h3 class="text-2xl font-bold mb-4">Monitoring & Optimization</h3>
254
+ <p class="text-gray-400">
255
+ We continuously monitor performance metrics and make data-driven adjustments to your strategy. Our team provides regular reports and recommendations to ensure sustained growth.
256
+ </p>
257
+ </div>
258
+ <div class="relative lg:pl-8 mt-8 lg:mt-0">
259
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-[#FF9900] text-black font-bold text-xl absolute left-1/2 transform -translate-x-1/2 lg:left-0 lg:translate-x-0">4</div>
260
+ <img src="http://static.photos/minimal/800x500/4" alt="Monitoring" class="rounded-xl shadow-xl border border-gray-700">
261
+ </div>
262
+ </div>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Final CTA -->
268
+ <div class="bg-[#FF9900] rounded-xl p-8 text-center">
269
+ <h3 class="text-2xl md:text-3xl font-bold mb-4 text-black">Ready to turn your product into a best-seller?</h3>
270
+ <p class="text-xl text-black mb-6">Our team is ready to help you dominate your category.</p>
271
+ <a href="contact.html" class="inline-block bg-black text-white px-8 py-3 rounded-md font-bold text-lg hover:bg-gray-900 transition duration-300">Contact Us Today</a>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Footer -->
276
+ <footer class="bg-black py-12">
277
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
278
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
279
+ <div class="md:col-span-2">
280
+ <h3 class="text-2xl font-bold mb-4">TWINORY</h3>
281
+ <p class="text-gray-400">Amazon Seller Growth & Compliance Solutions.</p>
282
+ <div class="flex space-x-4 mt-4">
283
+ <a href="#" class="text-gray-400 hover:text-white">
284
+ <i data-feather="facebook"></i>
285
+ </a>
286
+ <a href="#" class="text-gray-400 hover:text-white">
287
+ <i data-feather="twitter"></i>
288
+ </a>
289
+ <a href="#" class="text-gray-400 hover:text-white">
290
+ <i data-feather="linkedin"></i>
291
+ </a>
292
+ <a href="#" class="text-gray-400 hover:text-white">
293
+ <i data-feather="instagram"></i>
294
+ </a>
295
+ </div>
296
+ </div>
297
+ <div>
298
+ <h4 class="text-white font-bold mb-4">Quick Links</h4>
299
+ <ul class="space-y-2">
300
+ <li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
301
+ <li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
302
+ <li><a href="#" class="text-gray-400 hover:text-white">Services</a></li>
303
+ <li><a href="contact.html" class="text-gray-400 hover:text-white">Contact</a></li>
304
+ </ul>
305
+ </div>
306
+ <div>
307
+ <h4 class="text-white font-bold mb-4">Legal</h4>
308
+ <ul class="space-y-2">
309
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
310
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
311
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
312
+ </ul>
313
+ </div>
314
+ </div>
315
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
316
+ <p>&copy; 2023 TWINORY LLC. All rights reserved.</p>
317
+ </div>
318
+ </div>
319
+ </footer>
320
+
321
+ <script>
322
+ feather.replace();
323
+ </script>
324
+ </body>
325
+ </html>