pushing all files

This commit is contained in:
2025-08-30 11:03:32 +03:00
parent fd2dcf0daa
commit 81b875023b
510 changed files with 81710 additions and 0 deletions

View File

@ -0,0 +1,88 @@
"use client"
import SEO from "@/src/components/data/seo";
import HeaderOne from "@/components/layout/headers/header-one";
import BreadCrumb from "../common/breadcrumb";
import FooterTwo from "@/components/layout/footers/footer-two";
import Form from "./form";
import ScrollToTop from "../common/scroll/scroll-to-top";
const ContactThree = () => {
return (
<>
<SEO pageTitle="Contact Three" />
<HeaderOne />
<BreadCrumb title="Contact Three" innerTitle="Contact Three" />
<div className="contact__three pb-0 section-padding">
<div className="container">
<div className="row">
<div className="col-xl-4 col-md-6 lg-mb-30">
<div className="contact__three-info">
<div className="contact__three-info-icon">
<img src="/assets/img/icon/call.png" alt="icon" />
</div>
<div className="contact__three-info-content">
<h4>Tell With US</h4>
<p><a href="tel:+125(895)658568">+125 (895) 658 568</a></p>
<p><a href="tel:+125(874)452645">+125 (874) 452 645</a></p>
</div>
</div>
</div>
<div className="col-xl-4 col-md-6 md-mb-30">
<div className="contact__three-info">
<div className="contact__three-info-icon">
<img src="/assets/img/icon/email.png" alt="icon" />
</div>
<div className="contact__three-info-content">
<h4>Quick Email</h4>
<p><a href="mailto:info.conbix@gmail.com">info.conbix@gmail.com</a></p>
<p><a href="mailto:conbix@gmail.com">conbix@gmail.com</a></p>
</div>
</div>
</div>
<div className="col-xl-4 col-md-6">
<div className="contact__three-info">
<div className="contact__three-info-icon">
<img src="/assets/img/icon/locations.png" alt="icon" />
</div>
<div className="contact__three-info-content">
<h4>Office Location</h4>
<p>8502 Preston Inglewood,<br/>Maine 98380</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div className="contact__three section-padding">
<div className="container">
<div className="row align-items-center">
<div className="col-xl-6 col-lg-6 lg-mb-30">
<div className="contact__three-left mr-40 xl-mr-0">
<div className="contact__three-left-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d193595.15830894606!2d-74.11976383964463!3d40.69766374865767!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2sbd!4v1652012644726!5m2!1sen!2sbd" loading="lazy"></iframe>
</div>
</div>
</div>
<div className="col-xl-6 col-lg-6">
<div className="contact__three-right">
<div className="contact__three-right-title">
<span className="subtitle-one">Request a call Back</span>
<h2 className="mb-30">Contact about your Project.</h2>
</div>
<div className="contact__three-right-form">
<Form />
</div>
</div>
</div>
</div>
</div>
</div>
<div className='all-footer'>
<FooterTwo />
</div>
<ScrollToTop />
</>
);
};
export default ContactThree;