ソースを参照

added contact page an removed some lorem content

Rahul Katari 5ヶ月前
コミット
2fc043a202
7個のファイルの変更239行の追加20行の削除
  1. 8
    1
      assets/css/main.css
  2. バイナリ
      assets/img/contact.png
  3. 12
    0
      assets/js/main.js
  4. 10
    10
      assets/js/navbar.js
  5. 200
    0
      contact.html
  6. 8
    8
      index.html
  7. 1
    1
      service-details.html

+ 8
- 1
assets/css/main.css ファイルの表示

@@ -368,7 +368,7 @@ h6 {
368 368
     color: var(--nav-dropdown-color);
369 369
     padding: 10px 20px;
370 370
     font-family: var(--nav-font);
371
-    font-size: 17px;
371
+    font-size: 14px;
372 372
     font-weight: 500;
373 373
     display: flex;
374 374
     align-items: center;
@@ -457,6 +457,13 @@ h6 {
457 457
   .mobile-nav-active .navmenu>ul {
458 458
     display: block;
459 459
   }
460
+  .navmenu .dropdown.mega-menu ul{
461
+    display: none !important;
462
+    padding: 0px !important;
463
+  }
464
+  .navmenu .dropdown.mega-menu>.dropdown-active{
465
+    display: block !important;
466
+  }
460 467
 }
461 468
 
462 469
 /*--------------------------------------------------------------

バイナリ
assets/img/contact.png ファイルの表示


+ 12
- 0
assets/js/main.js ファイルの表示

@@ -150,6 +150,18 @@
150 150
         }, 100);
151 151
       }
152 152
     }
153
+    const page = window.location.pathname;
154
+    document.querySelectorAll('#navmenu li').forEach(item => {
155
+      // Your logic here
156
+      debugger;
157
+      const link = item.querySelector('a');
158
+      let route = link.getAttribute('href');
159
+      if(page !== '/')
160
+        route = '/'+route;
161
+      if(route === page)
162
+        link.classList.add('active')
163
+      console.log(item.textContent); // Example: logs the text content of each <li>
164
+  });
153 165
   });
154 166
 
155 167
   /**

+ 10
- 10
assets/js/navbar.js ファイルの表示

@@ -9,7 +9,7 @@ const html = `<div
9 9
 
10 10
     <nav id="navmenu" class="navmenu">
11 11
         <ul>
12
-            <li><a href="/" class="active">Home</a></li>
12
+            <li><a href="/">Home</a></li>
13 13
             <li><a href="about.html">About</a></li>
14 14
             <li class="dropdown"><a href="#"><span>Products</span> <i
15 15
                         class="bi bi-chevron-down toggle-dropdown"></i></a>
@@ -17,15 +17,15 @@ const html = `<div
17 17
                     <li><a href="zeno-aio-landing.html">Laptops</a></li>
18 18
                     <li><a href="zeno-aio-landing.html">All In One's</a></li>
19 19
                     <li><a href="#">Servers</a></li>
20
-                    <li><a href="#">AI NVR (Coming Soon)</a></li>
21
-                    <li><a href="#">Racks</a></li>
20
+                    <li class="d-none"><a href="#">AI NVR (Coming Soon)</a></li>
21
+                    <li class="d-none"><a href="#">Racks</a></li>
22 22
                 </ul>
23 23
             </li>
24 24
             <li class="dropdown mega-menu"><a href="#"><span>Solutions</span> <i
25 25
                         class="bi bi-chevron-down toggle-dropdown"></i></a>
26 26
                 <ul>
27
-                    <li>
28
-                        <span class="text-primary ps-2">Supply Chain Solutions</span>
27
+                    <li class="mt-md-0 mt-3">
28
+                        <h6 class="text-primary ps-2 mb-2">Supply Chain Solutions</h6>
29 29
                         <div>
30 30
                             <div><a href="dealer-automation.html">Dealer Automation</a></div>
31 31
                             <div><a href="secondary-sales.html">Secodary Sales </a></div>
@@ -35,15 +35,15 @@ const html = `<div
35 35
                             <div><a href="track-and-trace.html">Track and Trace </a></div>
36 36
                         </div>
37 37
                     </li>
38
-                    <li>
39
-                        <span class="text-primary ps-2">Process Automation</span>
38
+                    <li class="mt-md-0 mt-3">
39
+                        <h6 class="text-primary ps-2 mb-2">Process Automation</h6>
40 40
                         <div>
41 41
                             <div><a href="enterprises.html">Enterprises</a></div>
42 42
                             <div><a href="govermnets.html">Governments</a></div>
43 43
                             <div><a href="small-businesses.html">Small Businesses</a></div>
44 44
                         </div>
45 45
                     </li>
46
-                    <li><span class="text-primary ps-2">VMS</span>
46
+                    <li class="mt-md-0 mt-3"><h6 class="text-primary ps-2 mb-2">VMS</h6>
47 47
                         <div>
48 48
                             <div><a href="integrated-video-solutions.html">Integrated Video Solutions</a></div>
49 49
                             <div><a href="video-storage-solutions.html">Video Storage Solutions</a></div>
@@ -80,12 +80,12 @@ const html = `<div
80 80
                 </ul>
81 81
             </li>
82 82
                 <li><a href="#">Investors</a></li>
83
-                <li><a href="#">Contact</a></li>
83
+                <li><a href="contact.html">Contact</a></li>
84 84
         </ul>
85 85
         <i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
86 86
     </nav>
87 87
 
88
-    <a class="btn-getstarted d-none" href="#">Get Started</a>
88
+    <a class="btn-getstarted" href="#">Get Started</a>
89 89
 
90 90
 </div>`;
91 91
     document.getElementById('header').innerHTML = html;

+ 200
- 0
contact.html ファイルの表示

@@ -0,0 +1,200 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+
4
+<head>
5
+  <meta charset="utf-8">
6
+  <meta content="width=device-width, initial-scale=1.0" name="viewport">
7
+  <title>ADM - ARIA Digital Machines</title>
8
+  <meta name="description" content="">
9
+  <meta name="keywords" content="">
10
+
11
+  <!-- Favicons -->
12
+  <link href="assets/img/favicon.png" rel="icon">
13
+  <link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
14
+
15
+  <!-- Fonts -->
16
+  <link href="https://fonts.googleapis.com" rel="preconnect">
17
+  <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
18
+  <link
19
+    href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
20
+    rel="stylesheet">
21
+
22
+  <!-- Vendor CSS Files -->
23
+  <link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
24
+  <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
25
+  <link href="assets/vendor/aos/aos.css" rel="stylesheet">
26
+  <link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
27
+  <link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
28
+
29
+  <!-- Main CSS File -->
30
+  <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
31
+  <link href="assets/css/main.css" rel="stylesheet">
32
+</head>
33
+
34
+<body class="index-page">
35
+
36
+  <header id="header" class="header d-flex align-items-center fixed-top">
37
+  </header>
38
+
39
+  <main class="main">
40
+
41
+    <!-- Hero Section -->
42
+    <section id="hero" class="hero section">
43
+
44
+      <div class="container" data-aos="fade-up" data-aos-delay="100">
45
+
46
+        <div class="row align-items-center">
47
+          <div class="col-lg-6">
48
+            <div class="hero-content" data-aos="fade-up" data-aos-delay="200">
49
+              <h1 class="mb-4">
50
+                Get in Touch
51
+              </h1>
52
+
53
+              <p class="mb-4 mb-md-5">
54
+                We’re here to help you! Whether you have a question, need assistance, or want to learn more about our
55
+                services, feel free to contact us. Our team is dedicated to providing the support you need to succeed in
56
+                the digital age.
57
+              </p>
58
+            </div>
59
+          </div>
60
+
61
+          <div class="col-lg-6">
62
+            <div class="hero-image" data-aos="zoom-out" data-aos-delay="300">
63
+              <img src="assets/img/contact.png" alt="Contact Us" class="img-fluid">
64
+            </div>
65
+          </div>
66
+        </div>
67
+
68
+      </div>
69
+
70
+    </section><!-- /Hero Section -->
71
+
72
+    <!-- Contact Section -->
73
+    <section id="contact" class="contact section light-background">
74
+
75
+      <!-- Section Title -->
76
+      <div class="container section-title" data-aos="fade-up">
77
+        <h2>Contact</h2>
78
+        <p>Have a question? Need support? Reach out to us through the details below or send us a message using the form.
79
+        </p>
80
+      </div><!-- End Section Title -->
81
+
82
+      <div class="container" data-aos="fade-up" data-aos-delay="100">
83
+
84
+        <div class="row g-4 g-lg-5">
85
+          <div class="col-lg-5">
86
+            <div class="info-box" data-aos="fade-up" data-aos-delay="200">
87
+              <h3>Contact Information</h3>
88
+              <p>We are here to assist you. Feel free to reach out through any of the provided contact methods.</p>
89
+
90
+              <div class="info-item" data-aos="fade-up" data-aos-delay="300">
91
+                <div class="icon-box">
92
+                  <i class="bi bi-geo-alt"></i>
93
+                </div>
94
+                <div class="content">
95
+                  <h4>Our Locations</h4>
96
+                  <p>San Francisco</p>
97
+                  <p>Kabul</p>
98
+                  <p>Dubai</p>
99
+                  <p>Hyderabad</p>
100
+                </div>
101
+              </div>
102
+
103
+              <div class="info-item" data-aos="fade-up" data-aos-delay="400">
104
+                <div class="icon-box">
105
+                  <i class="bi bi-telephone"></i>
106
+                </div>
107
+                <div class="content">
108
+                  <h4>Phone</h4>
109
+                  <a href="tel:+1 510-566-5747 ">+1 510-566-5747 </a>
110
+                  <!-- <p>+91 12345 67890</p> -->
111
+                </div>
112
+              </div>
113
+
114
+              <div class="info-item" data-aos="fade-up" data-aos-delay="500">
115
+                <div class="icon-box">
116
+                  <i class="bi bi-envelope"></i>
117
+                </div>
118
+                <div class="content">
119
+                  <h4>Email</h4>
120
+                  <a href="mailto:sarwari@ariadigitalmachines.com">sarwari@ariadigitalmachines.com</a>
121
+                  <!-- <p>info@ariadigitalmachines.com</p> -->
122
+                </div>
123
+              </div>
124
+            </div>
125
+          </div>
126
+
127
+          <div class="col-lg-7">
128
+            <div class="contact-form" data-aos="fade-up" data-aos-delay="300">
129
+              <h3>Send Us a Message</h3>
130
+              <p>Have questions or feedback? Fill out the form below, and we’ll get back to you as soon as possible.</p>
131
+
132
+              <form action="forms/contact.php" method="post" class="php-email-form" data-aos="fade-up"
133
+                data-aos-delay="200">
134
+                <div class="row gy-4">
135
+
136
+                  <div class="col-md-6">
137
+                    <input type="text" name="name" class="form-control" placeholder="Your Name" required="">
138
+                  </div>
139
+
140
+                  <div class="col-md-6">
141
+                    <input type="email" class="form-control" name="email" placeholder="Your Email" required="">
142
+                  </div>
143
+
144
+                  <div class="col-12">
145
+                    <input type="text" class="form-control" name="subject" placeholder="Subject" required="">
146
+                  </div>
147
+
148
+                  <div class="col-12">
149
+                    <textarea class="form-control" name="message" rows="6" placeholder="Your Message"
150
+                      required=""></textarea>
151
+                  </div>
152
+
153
+                  <div class="col-12 text-center">
154
+                    <div class="loading">Loading...</div>
155
+                    <div class="error-message"></div>
156
+                    <div class="sent-message">Your message has been sent. Thank you!</div>
157
+
158
+                    <button type="submit" class="btn btn-primary">Send Message</button>
159
+                  </div>
160
+
161
+                </div>
162
+              </form>
163
+
164
+            </div>
165
+          </div>
166
+
167
+        </div>
168
+
169
+      </div>
170
+
171
+    </section><!-- /Contact Section -->
172
+
173
+  </main>
174
+
175
+
176
+  <footer id="footer" class="footer">
177
+  </footer>
178
+
179
+  <!-- Scroll Top -->
180
+  <a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i
181
+      class="bi bi-arrow-up-short"></i></a>
182
+
183
+  <!-- Vendor JS Files -->
184
+  <script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
185
+  <script src="assets/vendor/php-email-form/validate.js"></script>
186
+  <script src="assets/vendor/aos/aos.js"></script>
187
+  <script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
188
+  <script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
189
+  <script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
190
+
191
+  <!-- Main JS File -->
192
+
193
+  <!-- header and footer js files  -->
194
+  <script src="assets/js/navbar.js"></script>
195
+  <script src="assets/js/footer.js"></script>
196
+  <script src="assets/js/main.js"></script>
197
+
198
+</body>
199
+
200
+</html>

+ 8
- 8
index.html ファイルの表示

@@ -225,7 +225,7 @@
225 225
       <!-- Section Title -->
226 226
       <div class="container section-title" data-aos="fade-up">
227 227
         <h2>What's New</h2>
228
-        <p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
228
+        <!-- <p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p> -->
229 229
       </div><!-- End Section Title -->
230 230
 
231 231
       <div class="container">
@@ -744,7 +744,7 @@
744 744
       <!-- Section Title -->
745 745
       <div class="container section-title" data-aos="fade-up">
746 746
         <h2>Pre-configured Workflows</h2>
747
-        <p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
747
+        <!-- <p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p> -->
748 748
       </div><!-- End Section Title -->
749 749
 
750 750
       <div class="container" data-aos="fade-up" data-aos-delay="100">
@@ -760,7 +760,7 @@
760 760
                 <h3>Pre-Sales</h3>
761 761
                 <p>Rigid CRM does not work for every business, which is why our pre-sales workflows are adaptable to
762 762
                   your business needs and customers.</p>
763
-                <a href="service-details.html" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
763
+                <a href="#" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
764 764
               </div>
765 765
             </div>
766 766
           </div><!-- End Service Card -->
@@ -774,7 +774,7 @@
774 774
                 <h3>Sales</h3>
775 775
                 <p>Our sales tools enable B2B and B2C functions to operate E-commerce style, offering complete control
776 776
                   according to the business workflow.</p>
777
-                <a href="service-details.html" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
777
+                <a href="#" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
778 778
               </div>
779 779
             </div>
780 780
           </div><!-- End Service Card -->
@@ -789,7 +789,7 @@
789 789
                 <p>Maximize profit margins and improve efficiency to stay cost competitive, mapping out your procurement
790 790
                   practice effectively with intelligent demand forecasting that optimizes the inventory flow with more
791 791
                   cash rotation cycles.</p>
792
-                <a href="service-details.html" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
792
+                <a href="#" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
793 793
               </div>
794 794
             </div>
795 795
           </div><!-- End Service Card -->
@@ -803,7 +803,7 @@
803 803
                 <h3>Marketing</h3>
804 804
                 <p>Get the entire team on a single platform to manage the campaigns with an effective way of approach
805 805
                   and visibility to stakeholders, leading to increase in the profits.</p>
806
-                <a href="service-details.html" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
806
+                <a href="#" class="read-more">Read More <i class="bi bi-arrow-right"></i></a>
807 807
               </div>
808 808
             </div>
809 809
           </div><!-- End Service Card -->
@@ -1172,11 +1172,11 @@
1172 1172
   <script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
1173 1173
 
1174 1174
   <!-- Main JS File -->
1175
-  <script src="assets/js/main.js"></script>
1176
-
1175
+  
1177 1176
   <!-- header and footer js files  -->
1178 1177
   <script src="assets/js/navbar.js"></script>
1179 1178
   <script src="assets/js/footer.js"></script>
1179
+  <script src="assets/js/main.js"></script>
1180 1180
 
1181 1181
 </body>
1182 1182
 

+ 1
- 1
service-details.html ファイルの表示

@@ -4,7 +4,7 @@
4 4
 <head>
5 5
   <meta charset="utf-8">
6 6
   <meta content="width=device-width, initial-scale=1.0" name="viewport">
7
-  <title>Service Details - iLanding Bootstrap Template</title>
7
+  <title>ADM - ARIA Digital Machines</title>
8 8
   <meta name="description" content="">
9 9
   <meta name="keywords" content="">
10 10
 

読み込み中…
キャンセル
保存