Compare commits
1 Commits
main
..
8a2b4be7ac
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a2b4be7ac |
@@ -25,8 +25,62 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
<!-- Floating Menu Button -->
|
||||||
<div id="sidebar-container"></div>
|
<button class="floating-menu-btn" id="floatingMenuBtn">
|
||||||
|
<i class="bi bi-list"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Sidebar Overlay -->
|
||||||
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
||||||
|
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class="sidebar" id="sidebar">
|
||||||
|
<div class="sidebar-header">
|
||||||
|
<img
|
||||||
|
src="https://ik.imagekit.io/1e8470bv5/companyLogo.webp?updatedAt=1754143468028"
|
||||||
|
alt="Ky Long Logo"
|
||||||
|
class="sidebar-logo"
|
||||||
|
/>
|
||||||
|
<button class="close-sidebar">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="sidebar-nav">
|
||||||
|
<a href="/" class="nav-link">TRANG CHỦ</a>
|
||||||
|
<a href="/aboutMain" class="nav-link">GIỚI THIỆU</a>
|
||||||
|
<a href="/productMain" class="nav-link">SẢN PHẨM</a>
|
||||||
|
<a href="/serviceMain" class="nav-link">DỊCH VỤ</a>
|
||||||
|
<a href="/newsMain" class="nav-link">TIN TỨC</a>
|
||||||
|
<a href="/contactMain" class="nav-link">LIÊN HỆ</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="sidebar-contact">
|
||||||
|
<div class="d-flex align-items-center mb-3">
|
||||||
|
<div
|
||||||
|
class="contact-icon2 d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-geo-alt-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Lầu 12, số 27 Đinh Bộ Lĩnh,</div>
|
||||||
|
<div>P. Bình Thạnh, TP.Hồ Chí Minh</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<div
|
||||||
|
class="contact-icon d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-envelope-open-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Email:</div>
|
||||||
|
<div>info@kylongtech.com</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Main Content -->
|
<!-- Main Content -->
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
@@ -254,7 +308,6 @@
|
|||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="/components/header/headerLoader.js"></script>
|
<script src="/components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="aboutPages/aboutMain.js?v=1.2"></script>
|
<script src="aboutPages/aboutMain.js?v=1.2"></script>
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
// views/components/sidebar/sidebar.js
|
// views/components/sidebar/sidebar.js
|
||||||
// NOTE: This script is always loaded dynamically by sidebarLoader.js AFTER
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
// the sidebar HTML has already been injected into #sidebar-container.
|
initSidebar();
|
||||||
// DOMContentLoaded has already fired at this point, so we must call
|
});
|
||||||
// initSidebar() directly — NOT inside a DOMContentLoaded listener.
|
|
||||||
|
|
||||||
function initSidebar() {
|
function initSidebar() {
|
||||||
const floatingMenuBtn = document.getElementById("floatingMenuBtn");
|
const floatingMenuBtn = document.getElementById("floatingMenuBtn");
|
||||||
@@ -68,6 +67,3 @@ function initSidebar() {
|
|||||||
lastScrollY = window.scrollY;
|
lastScrollY = window.scrollY;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Call directly — sidebar HTML is already in DOM when this script executes
|
|
||||||
initSidebar();
|
|
||||||
|
|||||||
@@ -35,7 +35,10 @@ a:active {
|
|||||||
|
|
||||||
/* Contact Section */
|
/* Contact Section */
|
||||||
.contact-section {
|
.contact-section {
|
||||||
|
padding: 60px 5%;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
|
max-width: 1400px;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-intro {
|
.page-intro {
|
||||||
@@ -57,18 +60,19 @@ a:active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.contact-container {
|
.contact-container {
|
||||||
|
display: flex;
|
||||||
|
gap: 40px;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enhanced Form Container */
|
/* Enhanced Form Container */
|
||||||
.contact-form {
|
.contact-form {
|
||||||
|
flex: 1;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 35px;
|
padding: 35px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
|
||||||
transition:
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||||
transform 0.3s ease,
|
|
||||||
box-shadow 0.3s ease;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -299,9 +303,7 @@ a:active {
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition:
|
transition: transform 0.6s, opacity 0.6s;
|
||||||
transform 0.6s,
|
|
||||||
opacity 0.6s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.submit-button:hover::after {
|
.submit-button:hover::after {
|
||||||
@@ -311,17 +313,14 @@ a:active {
|
|||||||
|
|
||||||
/* Contact Details Section */
|
/* Contact Details Section */
|
||||||
.contact-details {
|
.contact-details {
|
||||||
|
flex: 1;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 35px;
|
padding: 35px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
|
||||||
transition:
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||||
transform 0.3s ease,
|
|
||||||
box-shadow 0.3s ease;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-details::before {
|
.contact-details::before {
|
||||||
@@ -381,9 +380,7 @@ a:active {
|
|||||||
color: #30875f;
|
color: #30875f;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
transition:
|
transition: color 0.3s, transform 0.3s;
|
||||||
color 0.3s,
|
|
||||||
transform 0.3s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-item:hover i {
|
.contact-item:hover i {
|
||||||
@@ -431,18 +428,8 @@ a:active {
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||||
transition:
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||||
transform 0.3s ease,
|
|
||||||
box-shadow 0.3s ease;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-grow: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.map-container iframe {
|
|
||||||
flex-grow: 1;
|
|
||||||
height: 100% !important;
|
|
||||||
min-height: 250px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.map-container:hover {
|
.map-container:hover {
|
||||||
@@ -501,8 +488,7 @@ a:active {
|
|||||||
/* Responsive Design */
|
/* Responsive Design */
|
||||||
@media (max-width: 1200px) {
|
@media (max-width: 1200px) {
|
||||||
.contact-section {
|
.contact-section {
|
||||||
padding-top: 50px;
|
padding: 50px 4%;
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-form,
|
.contact-form,
|
||||||
@@ -528,8 +514,13 @@ a:active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
.contact-container {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.contact-form,
|
.contact-form,
|
||||||
.contact-details {
|
.contact-details {
|
||||||
|
width: 100%;
|
||||||
padding: 25px;
|
padding: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -566,8 +557,7 @@ a:active {
|
|||||||
|
|
||||||
@media (max-width: 576px) {
|
@media (max-width: 576px) {
|
||||||
.contact-section {
|
.contact-section {
|
||||||
padding-top: 40px;
|
padding: 40px 15px;
|
||||||
padding-bottom: 40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-intro {
|
.page-intro {
|
||||||
|
|||||||
@@ -31,111 +31,162 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
<!-- Floating Menu Button -->
|
||||||
<div id="sidebar-container"></div>
|
<button class="floating-menu-btn" id="floatingMenuBtn">
|
||||||
|
<i class="bi bi-list"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
<!----- CONTACT PAGE CONTENT ----->
|
<!-- Sidebar Overlay -->
|
||||||
<section class="contact-section container py-5 my-3 overflow-hidden">
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
||||||
<h1 class="page-intro">LIÊN HỆ VỚI KỲ LONG</h1>
|
|
||||||
|
|
||||||
<div class="contact-container row g-4 g-lg-5">
|
<!-- Sidebar -->
|
||||||
<div class="col-12 col-md-6 mb-4 mb-md-0">
|
<div class="sidebar" id="sidebar">
|
||||||
<div class="contact-form h-100">
|
<div class="sidebar-header">
|
||||||
<h2>Gửi tin nhắn cho chúng tôi</h2>
|
<img
|
||||||
|
src="https://ik.imagekit.io/1e8470bv5/companyLogo.webp?updatedAt=1754143468028"
|
||||||
|
alt="Ky Long Logo"
|
||||||
|
class="sidebar-logo"
|
||||||
|
/>
|
||||||
|
<button class="close-sidebar">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Optional: Progress bar to show form completion -->
|
<nav class="sidebar-nav">
|
||||||
<div class="form-progress">
|
<a href="/" class="nav-link">TRANG CHỦ</a>
|
||||||
<div class="form-progress-bar"></div>
|
<a href="/aboutMain" class="nav-link">GIỚI THIỆU</a>
|
||||||
</div>
|
<a href="/productMain" class="nav-link">SẢN PHẨM</a>
|
||||||
|
<a href="/serviceMain" class="nav-link">DỊCH VỤ</a>
|
||||||
|
<a href="/newsMain" class="nav-link">TIN TỨC</a>
|
||||||
|
<a href="/contactMain" class="nav-link">LIÊN HỆ</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<form action="/contactSubmit" method="POST" id="contactForm">
|
<div class="sidebar-contact">
|
||||||
<div class="form-group">
|
<div class="d-flex align-items-center mb-3">
|
||||||
<label for="name" class="required">Họ và tên</label>
|
<div
|
||||||
<input
|
class="contact-icon2 d-flex align-items-center justify-content-center me-2"
|
||||||
type="text"
|
>
|
||||||
id="name"
|
<i class="bi bi-geo-alt-fill"></i>
|
||||||
name="name"
|
</div>
|
||||||
placeholder="Nhập họ và tên của bạn"
|
<div>
|
||||||
required
|
<div>Lầu 12, số 27 Đinh Bộ Lĩnh,</div>
|
||||||
/>
|
<div>P. Bình Thạnh, TP.Hồ Chí Minh</div>
|
||||||
<div class="error-message">Vui lòng nhập họ và tên của bạn</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="email" class="required">Email</label>
|
|
||||||
<input
|
|
||||||
type="email"
|
|
||||||
id="email"
|
|
||||||
name="email"
|
|
||||||
placeholder="Nhập địa chỉ email của bạn"
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
<div class="error-message">
|
|
||||||
Vui lòng nhập một địa chỉ email hợp lệ
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="phone" class="required">Số điện thoại</label>
|
|
||||||
<input
|
|
||||||
type="tel"
|
|
||||||
id="phone"
|
|
||||||
name="phone"
|
|
||||||
placeholder="Nhập số điện thoại của bạn"
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
<div class="error-message">
|
|
||||||
Vui lòng nhập số điện thoại của bạn
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="message" class="required">Nội dung</label>
|
|
||||||
<textarea
|
|
||||||
id="message"
|
|
||||||
name="message"
|
|
||||||
placeholder="Nhập nội dung tin nhắn của bạn"
|
|
||||||
rows="5"
|
|
||||||
required
|
|
||||||
></textarea>
|
|
||||||
<div class="error-message">Vui lòng nhập nội dung tin nhắn</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<button type="submit" class="submit-button">Gửi tin nhắn</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<!-- Container for success/error messages -->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-12 col-md-6">
|
<div class="d-flex align-items-center">
|
||||||
<div class="contact-details h-100">
|
<div
|
||||||
<h2>Thông tin liên hệ</h2>
|
class="contact-icon d-flex align-items-center justify-content-center me-2"
|
||||||
<div class="contact-info">
|
>
|
||||||
<div class="contact-item">
|
<i class="bi bi-envelope-open-fill"></i>
|
||||||
<i class="fas fa-map-marker-alt"></i>
|
</div>
|
||||||
<p>Lầu 12, số 27 Đinh Bộ Lĩnh, P. Bình Thạnh, TP.Hồ Chí Minh</p>
|
<div>
|
||||||
</div>
|
<div>Email:</div>
|
||||||
<div class="contact-item">
|
<div>info@kylongtech.com</div>
|
||||||
<i class="fas fa-phone-alt"></i>
|
</div>
|
||||||
<p>+84 96 227 7912</p>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="contact-item">
|
</div>
|
||||||
<i class="fas fa-envelope"></i>
|
|
||||||
<p>info@kylongtech.com</p>
|
<!----- CONTACT PAGE CONTENT ----->
|
||||||
|
<section class="contact-section">
|
||||||
|
<h1 class="page-intro">LIÊN HỆ VỚI KỲ LONG</h1>
|
||||||
|
|
||||||
|
<div class="contact-container">
|
||||||
|
<div class="contact-form">
|
||||||
|
<h2>Gửi tin nhắn cho chúng tôi</h2>
|
||||||
|
|
||||||
|
<!-- Optional: Progress bar to show form completion -->
|
||||||
|
<div class="form-progress">
|
||||||
|
<div class="form-progress-bar"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form action="/contactSubmit" method="POST" id="contactForm">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="name" class="required">Họ và tên</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="name"
|
||||||
|
name="name"
|
||||||
|
placeholder="Nhập họ và tên của bạn"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
<div class="error-message">Vui lòng nhập họ và tên của bạn</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="email" class="required">Email</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
id="email"
|
||||||
|
name="email"
|
||||||
|
placeholder="Nhập địa chỉ email của bạn"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
<div class="error-message">
|
||||||
|
Vui lòng nhập một địa chỉ email hợp lệ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="map-container">
|
<div class="form-group">
|
||||||
<iframe
|
<label for="phone" class="required">Số điện thoại</label>
|
||||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3919.0886950094214!2d106.70665347594756!3d10.804518689345947!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x317528bb7aef745f%3A0x9171c157a44f8c21!2zMjcgxJAuIMSQaW5oIELhu5kgTMSpbmgsIFBoxrDhu51uZyAxNCwgQsOsbmggVGjhuqFuaCwgSOG7kyBDaMOtIE1pbmgsIFZpZXRuYW0!5e0!3m2!1sen!2s!4v1757160111176!5m2!1sen!2s"
|
<input
|
||||||
class="w-100"
|
type="tel"
|
||||||
height="300"
|
id="phone"
|
||||||
style="border: 0"
|
name="phone"
|
||||||
allowfullscreen=""
|
placeholder="Nhập số điện thoại của bạn"
|
||||||
loading="lazy"
|
required
|
||||||
></iframe>
|
/>
|
||||||
|
<div class="error-message">
|
||||||
|
Vui lòng nhập số điện thoại của bạn
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="message" class="required">Nội dung</label>
|
||||||
|
<textarea
|
||||||
|
id="message"
|
||||||
|
name="message"
|
||||||
|
placeholder="Nhập nội dung tin nhắn của bạn"
|
||||||
|
rows="5"
|
||||||
|
required
|
||||||
|
></textarea>
|
||||||
|
<div class="error-message">Vui lòng nhập nội dung tin nhắn</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="submit" class="submit-button">Gửi tin nhắn</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<!-- Container for success/error messages -->
|
||||||
|
<div id="form-messages"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="contact-details">
|
||||||
|
<h2>Thông tin liên hệ</h2>
|
||||||
|
<div class="contact-info">
|
||||||
|
<div class="contact-item">
|
||||||
|
<i class="fas fa-map-marker-alt"></i>
|
||||||
|
<p>Lầu 12, số 27 Đinh Bộ Lĩnh, P. Bình Thạnh, TP.Hồ Chí Minh</p>
|
||||||
|
</div>
|
||||||
|
<div class="contact-item">
|
||||||
|
<i class="fas fa-phone-alt"></i>
|
||||||
|
<p>+84 96 227 7912</p>
|
||||||
|
</div>
|
||||||
|
<div class="contact-item">
|
||||||
|
<i class="fas fa-envelope"></i>
|
||||||
|
<p>info@kylongtech.com</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="map-container">
|
||||||
|
<iframe
|
||||||
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3919.0886950094214!2d106.70665347594756!3d10.804518689345947!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x317528bb7aef745f%3A0x9171c157a44f8c21!2zMjcgxJAuIMSQaW5oIELhu5kgTMSpbmgsIFBoxrDhu51uZyAxNCwgQsOsbmggVGjhuqFuaCwgSOG7kyBDaMOtIE1pbmgsIFZpZXRuYW0!5e0!3m2!1sen!2s!4v1757160111176!5m2!1sen!2s"
|
||||||
|
width="100%"
|
||||||
|
height="300"
|
||||||
|
style="border: 0"
|
||||||
|
allowfullscreen=""
|
||||||
|
loading="lazy"
|
||||||
|
></iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -146,7 +197,6 @@
|
|||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="/components/header/headerLoader.js"></script>
|
<script src="/components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="contactPages/contactMain.js?v=1.1"></script>
|
<script src="contactPages/contactMain.js?v=1.1"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -25,9 +25,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<div class="container my-4 my-md-5 overflow-hidden">
|
<div class="container my-4 my-md-5 overflow-hidden">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-12 col-md-10 col-lg-8">
|
<div class="col-12 col-md-10 col-lg-8">
|
||||||
@@ -501,7 +498,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="newsPages/newsArticle1/newsArticle1.js?v=1.0"></script>
|
<script src="newsPages/newsArticle1/newsArticle1.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -25,9 +25,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<div class="container my-4 my-md-5 overflow-hidden">
|
<div class="container my-4 my-md-5 overflow-hidden">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-12 col-md-10 col-lg-8">
|
<div class="col-12 col-md-10 col-lg-8">
|
||||||
@@ -317,7 +314,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="newsPages/newsArticle1/newsArticle1.js?v=1.0"></script>
|
<script src="newsPages/newsArticle1/newsArticle1.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -31,8 +31,62 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
<!-- Floating Menu Button -->
|
||||||
<div id="sidebar-container"></div>
|
<button class="floating-menu-btn" id="floatingMenuBtn">
|
||||||
|
<i class="bi bi-list"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Sidebar Overlay -->
|
||||||
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
||||||
|
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class="sidebar" id="sidebar">
|
||||||
|
<div class="sidebar-header">
|
||||||
|
<img
|
||||||
|
src="https://ik.imagekit.io/1e8470bv5/companyLogo.webp?updatedAt=1754143468028"
|
||||||
|
alt="Ky Long Logo"
|
||||||
|
class="sidebar-logo"
|
||||||
|
/>
|
||||||
|
<button class="close-sidebar">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="sidebar-nav">
|
||||||
|
<a href="/" class="nav-link">TRANG CHỦ</a>
|
||||||
|
<a href="/aboutMain" class="nav-link">GIỚI THIỆU</a>
|
||||||
|
<a href="/productMain" class="nav-link">SẢN PHẨM</a>
|
||||||
|
<a href="/serviceMain" class="nav-link">DỊCH VỤ</a>
|
||||||
|
<a href="/newsMain" class="nav-link">TIN TỨC</a>
|
||||||
|
<a href="/contactMain" class="nav-link">LIÊN HỆ</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="sidebar-contact">
|
||||||
|
<div class="d-flex align-items-center mb-3">
|
||||||
|
<div
|
||||||
|
class="contact-icon2 d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-geo-alt-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Lầu 12, số 27 Đinh Bộ Lĩnh,</div>
|
||||||
|
<div>P. Bình Thạnh, TP.Hồ Chí Minh</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<div
|
||||||
|
class="contact-icon d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-envelope-open-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Email:</div>
|
||||||
|
<div>info@kylongtech.com</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- NEWS CONTENT SECTION -->
|
<!-- NEWS CONTENT SECTION -->
|
||||||
<main class="news-container">
|
<main class="news-container">
|
||||||
@@ -227,7 +281,6 @@
|
|||||||
|
|
||||||
<script src="newsPages/newsMain/newsMain.js?v=1.1"></script>
|
<script src="newsPages/newsMain/newsMain.js?v=1.1"></script>
|
||||||
<script src="/components/header/headerLoader.js"></script>
|
<script src="/components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -25,8 +25,62 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
<!-- Floating Menu Button -->
|
||||||
<div id="sidebar-container"></div>
|
<button class="floating-menu-btn" id="floatingMenuBtn">
|
||||||
|
<i class="bi bi-list"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Sidebar Overlay -->
|
||||||
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
||||||
|
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class="sidebar" id="sidebar">
|
||||||
|
<div class="sidebar-header">
|
||||||
|
<img
|
||||||
|
src="https://ik.imagekit.io/1e8470bv5/companyLogo.webp?updatedAt=1754143468028"
|
||||||
|
alt="Ky Long Logo"
|
||||||
|
class="sidebar-logo"
|
||||||
|
/>
|
||||||
|
<button class="close-sidebar">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="sidebar-nav">
|
||||||
|
<a href="/" class="nav-link">TRANG CHỦ</a>
|
||||||
|
<a href="/aboutMain" class="nav-link">GIỚI THIỆU</a>
|
||||||
|
<a href="/productMain" class="nav-link">SẢN PHẨM</a>
|
||||||
|
<a href="/serviceMain" class="nav-link">DỊCH VỤ</a>
|
||||||
|
<a href="/newsMain" class="nav-link">TIN TỨC</a>
|
||||||
|
<a href="/contactMain" class="nav-link">LIÊN HỆ</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="sidebar-contact">
|
||||||
|
<div class="d-flex align-items-center mb-3">
|
||||||
|
<div
|
||||||
|
class="contact-icon2 d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-geo-alt-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Lầu 12, số 27 Đinh Bộ Lĩnh,</div>
|
||||||
|
<div>P. Bình Thạnh, TP.Hồ Chí Minh</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<div
|
||||||
|
class="contact-icon d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-envelope-open-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Email:</div>
|
||||||
|
<div>info@kylongtech.com</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- PRODUCT HERO SECTION -->
|
<!-- PRODUCT HERO SECTION -->
|
||||||
<div class="symbol-hero">
|
<div class="symbol-hero">
|
||||||
@@ -325,7 +379,6 @@
|
|||||||
|
|
||||||
<script src="productPages/productMain/productMain.js?v=1.1"></script>
|
<script src="productPages/productMain/productMain.js?v=1.1"></script>
|
||||||
<script src="/components/header/headerLoader.js"></script>
|
<script src="/components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -32,9 +32,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- LNG HERO SECTION -->
|
<!-- LNG HERO SECTION -->
|
||||||
<section class="lng-hero">
|
<section class="lng-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -145,7 +142,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateCommerceLNG/productSeparateCommerceLNG.js?v=1.0"></script>
|
<script src="productPages/productSeparateCommerceLNG/productSeparateCommerceLNG.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -31,9 +31,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- PNG HERO SECTION -->
|
<!-- PNG HERO SECTION -->
|
||||||
<section class="png-hero">
|
<section class="png-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -143,7 +140,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateCommercePNG/productSeparateCommercePNG.js?v=1.0"></script>
|
<script src="productPages/productSeparateCommercePNG/productSeparateCommercePNG.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
-4
@@ -31,9 +31,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- GAS METER HERO SECTION -->
|
<!-- GAS METER HERO SECTION -->
|
||||||
<section class="gas-meter-hero">
|
<section class="gas-meter-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -140,7 +137,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateProductionGasMeter/productSeparateProductionGasMeter.js?v=1.0"></script>
|
<script src="productPages/productSeparateProductionGasMeter/productSeparateProductionGasMeter.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -32,9 +32,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- PRU HERO SECTION -->
|
<!-- PRU HERO SECTION -->
|
||||||
<section class="pru-hero">
|
<section class="pru-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -143,7 +140,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateProductionPRU/productSeparateProductionPRU.js?v=1.0"></script>
|
<script src="productPages/productSeparateProductionPRU/productSeparateProductionPRU.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
-4
@@ -29,9 +29,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- PRESSURE REGULATOR VALVE HERO SECTION -->
|
<!-- PRESSURE REGULATOR VALVE HERO SECTION -->
|
||||||
<section class="valve-hero">
|
<section class="valve-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -140,7 +137,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateProductionPressureRegulatorValve/productSeparateProductionPressureRegulatorValve.js?v=1.0"></script>
|
<script src="productPages/productSeparateProductionPressureRegulatorValve/productSeparateProductionPressureRegulatorValve.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
-4
@@ -29,9 +29,6 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
|
||||||
<div id="sidebar-container"></div>
|
|
||||||
|
|
||||||
<!-- VAPORIZER HERO SECTION -->
|
<!-- VAPORIZER HERO SECTION -->
|
||||||
<section class="vaporizer-hero">
|
<section class="vaporizer-hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
@@ -140,7 +137,6 @@
|
|||||||
<div id="footer"></div>
|
<div id="footer"></div>
|
||||||
|
|
||||||
<script src="components/header/headerLoader.js"></script>
|
<script src="components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
<script src="productPages/productSeparateProductionVaporizer/productSeparateProductionVaporizer.js?v=1.0"></script>
|
<script src="productPages/productSeparateProductionVaporizer/productSeparateProductionVaporizer.js?v=1.0"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -26,8 +26,62 @@
|
|||||||
<!-- Header Component -->
|
<!-- Header Component -->
|
||||||
<div id="header"></div>
|
<div id="header"></div>
|
||||||
|
|
||||||
<!-- Sidebar Component -->
|
<!-- Floating Menu Button -->
|
||||||
<div id="sidebar-container"></div>
|
<button class="floating-menu-btn" id="floatingMenuBtn">
|
||||||
|
<i class="bi bi-list"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Sidebar Overlay -->
|
||||||
|
<div class="sidebar-overlay" id="sidebarOverlay"></div>
|
||||||
|
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class="sidebar" id="sidebar">
|
||||||
|
<div class="sidebar-header">
|
||||||
|
<img
|
||||||
|
src="https://ik.imagekit.io/1e8470bv5/companyLogo.webp?updatedAt=1754143468028"
|
||||||
|
alt="Ky Long Logo"
|
||||||
|
class="sidebar-logo"
|
||||||
|
/>
|
||||||
|
<button class="close-sidebar">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="sidebar-nav">
|
||||||
|
<a href="/" class="nav-link">TRANG CHỦ</a>
|
||||||
|
<a href="/aboutMain" class="nav-link">GIỚI THIỆU</a>
|
||||||
|
<a href="/productMain" class="nav-link">SẢN PHẨM</a>
|
||||||
|
<a href="/serviceMain" class="nav-link">DỊCH VỤ</a>
|
||||||
|
<a href="/newsMain" class="nav-link">TIN TỨC</a>
|
||||||
|
<a href="/contactMain" class="nav-link">LIÊN HỆ</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="sidebar-contact">
|
||||||
|
<div class="d-flex align-items-center mb-3">
|
||||||
|
<div
|
||||||
|
class="contact-icon2 d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-geo-alt-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Lầu 12, số 27 Đinh Bộ Lĩnh,</div>
|
||||||
|
<div>P. Bình Thạnh, TP.Hồ Chí Minh</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<div
|
||||||
|
class="contact-icon d-flex align-items-center justify-content-center me-2"
|
||||||
|
>
|
||||||
|
<i class="bi bi-envelope-open-fill"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>Email:</div>
|
||||||
|
<div>info@kylongtech.com</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- SERVICE HERO SECTION -->
|
<!-- SERVICE HERO SECTION -->
|
||||||
<div class="service-hero">
|
<div class="service-hero">
|
||||||
@@ -267,7 +321,6 @@
|
|||||||
|
|
||||||
<script src="servicePages/serviceMain.js?v=1.2"></script>
|
<script src="servicePages/serviceMain.js?v=1.2"></script>
|
||||||
<script src="/components/header/headerLoader.js"></script>
|
<script src="/components/header/headerLoader.js"></script>
|
||||||
<script src="/components/sidebar/sidebarLoader.js"></script>
|
|
||||||
<script src="/components/footer/footerLoader.js"></script>
|
<script src="/components/footer/footerLoader.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user