first commit
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
import React from "react";
|
||||
|
||||
import HeaderTwo from "../../../components/header/HeaderTwo";
|
||||
import ContactAddress from "../../../components/contact/address/ContactAddress";
|
||||
import ContactForm from "../../../components/contact/form/ContactForm";
|
||||
import FooterTwo from "../../../components/footer/FooterTwo";
|
||||
import CopyRightTwo from "../../../components/footer/CopyRightTwo";
|
||||
import CallToActionThree from "../../../components/call-to-action/CallToActionThree";
|
||||
import Image from "next/image";
|
||||
export const metadata = {
|
||||
title: 'Contact Customer Support || Deski-Saas & Software Nextjs Template',
|
||||
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
|
||||
}
|
||||
const ContactCustomerSupport = () => {
|
||||
return (
|
||||
<div className="main-page-wrapper p0">
|
||||
|
||||
{/* End Page SEO Content */}
|
||||
|
||||
<HeaderTwo />
|
||||
{/* End Header */}
|
||||
|
||||
{/* =============================================
|
||||
Fancy Hero Four
|
||||
============================================== */}
|
||||
|
||||
<div className="fancy-hero-four space-fix">
|
||||
<div className="shapes shape-one"></div>
|
||||
<div className="shapes shape-two"></div>
|
||||
<div className="shapes shape-three"></div>
|
||||
<div className="shapes shape-four"></div>
|
||||
<div className="shapes shape-five"></div>
|
||||
<div className="shapes shape-six"></div>
|
||||
<div className="bg-wrapper">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-xl-9 col-lg-11 col-md-10 m-auto">
|
||||
<h6>Contact us</h6>
|
||||
<h2>Feel free to contact us or just say hi!</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.bg-wrapper */}
|
||||
</div>
|
||||
{/* /.fancy-hero-four */}
|
||||
|
||||
{/* =============================================
|
||||
Contact Style Two
|
||||
============================================== */}
|
||||
<div className="contact-style-two">
|
||||
<div className="container">
|
||||
<div className="contact-info-wrapper">
|
||||
<ContactAddress />
|
||||
<Image width={187} height={187}
|
||||
src="/images/shape/64.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-one"
|
||||
/>
|
||||
<Image width={196} height={196}
|
||||
src="/images/shape/65.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-two"
|
||||
/>
|
||||
</div>
|
||||
{/* /.contact-info-wrapper */}
|
||||
|
||||
<div className="form-style-classic mt-200 md-mt-80">
|
||||
<ContactForm />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.contact-style-two */}
|
||||
|
||||
{/* =====================================================
|
||||
Fancy Short Banner Three
|
||||
===================================================== */}
|
||||
<div className="fancy-short-banner-three mt-200 md-mt-130">
|
||||
<div className="container">
|
||||
<div className="bg-wrapper">
|
||||
<CallToActionThree />
|
||||
</div>
|
||||
{/* /.bg-wrapper */}
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
{/* /.fancy-short-banner-four */}
|
||||
|
||||
{/* =====================================================
|
||||
Footer Style Two
|
||||
===================================================== */}
|
||||
<footer className="theme-footer-two pt-150 md-pt-80">
|
||||
<div className="top-footer">
|
||||
<div className="container">
|
||||
<FooterTwo />
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
{/* /.top-footer */}
|
||||
|
||||
<div className="container">
|
||||
<div className="bottom-footer-content">
|
||||
<CopyRightTwo />
|
||||
</div>
|
||||
{/* /.bottom-footer */}
|
||||
</div>
|
||||
</footer>
|
||||
{/* /.theme-footer-one */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactCustomerSupport;
|
||||
@@ -0,0 +1,108 @@
|
||||
import React from "react";
|
||||
|
||||
import HeaderThree from "../../../components/header/HeaderThree";
|
||||
import ContactAddress from "../../../components/contact/address/ContactAddress";
|
||||
import ContactForm from "../../../components/contact/form/ContactForm";
|
||||
import CopyRight from "../../../components/footer/CopyRight";
|
||||
import FooterThree from "../../../components/footer/FooterThree";
|
||||
import CallToActionTwo from "../../../components/call-to-action/CallToActionTwo";
|
||||
import Image from "next/image";
|
||||
export const metadata = {
|
||||
title: 'Contact Documentation || Deski-Saas & Software Nextjs Template',
|
||||
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
|
||||
}
|
||||
const ContactDocumentation = () => {
|
||||
return (
|
||||
<div className="main-page-wrapper p0">
|
||||
|
||||
{/* End Page SEO Content */}
|
||||
|
||||
<HeaderThree />
|
||||
{/* End Header */}
|
||||
|
||||
{/* =============================================
|
||||
Fancy Hero Four
|
||||
============================================== */}
|
||||
|
||||
<div className="fancy-hero-four bg-doc space-fix">
|
||||
<div className="bg-wrapper">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-xl-9 col-lg-11 col-md-10 m-auto">
|
||||
<h6>Contact us</h6>
|
||||
<h2>Feel free to contact us or just say hi!</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.bg-wrapper */}
|
||||
</div>
|
||||
{/* /.fancy-hero-four */}
|
||||
|
||||
{/* =============================================
|
||||
Contact Style Two
|
||||
============================================== */}
|
||||
<div className="contact-style-two">
|
||||
<div className="container">
|
||||
<div className="contact-info-wrapper">
|
||||
<ContactAddress />
|
||||
<Image width={187} height={187}
|
||||
src="/images/shape/64.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-one"
|
||||
/>
|
||||
<Image width={196} height={196}
|
||||
src="/images/shape/65.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-two"
|
||||
/>
|
||||
</div>
|
||||
{/* /.contact-info-wrapper */}
|
||||
|
||||
<div className="form-style-classic mt-200 md-mt-80">
|
||||
<ContactForm />
|
||||
</div>
|
||||
</div>
|
||||
{/* /.contact-style-two */}
|
||||
|
||||
<div className="fancy-short-banner-four m0 pt-150 md-pt-100">
|
||||
<div className="container">
|
||||
<div className="bg-wrapper">
|
||||
<CallToActionTwo />
|
||||
</div>
|
||||
{/* /.bg-wrapper */}
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
{/* /.fancy-short-banner-four */}
|
||||
|
||||
{/* =====================================================
|
||||
Footer Style Three
|
||||
===================================================== */}
|
||||
<footer className="theme-footer-three pt-100">
|
||||
<div className="top-footer">
|
||||
<div className="container">
|
||||
<FooterThree />
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
{/* /.top-footer */}
|
||||
|
||||
<div className="container">
|
||||
<div className="bottom-footer-content">
|
||||
<div className="row">
|
||||
<div className="col-lg-8 ms-auto">
|
||||
<CopyRight />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.bottom-footer */}
|
||||
</div>
|
||||
</footer>
|
||||
{/* /.theme-footer-three */}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactDocumentation;
|
||||
@@ -0,0 +1,100 @@
|
||||
import React from "react";
|
||||
|
||||
import HeaderTwo from "../../../components/header/HeaderFour";
|
||||
import ContactAddress from "../../../components/contact/address/ContactAddress";
|
||||
import ContactForm from "../../../components/contact/form/ContactForm";
|
||||
import FooterFour from "../../../components/footer/FooterFour";
|
||||
import Image from "next/image";
|
||||
export const metadata = {
|
||||
title: 'Contact Event Organizer || Deski-Saas & Software Nextjs Template',
|
||||
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
|
||||
}
|
||||
const ContactEventOrganizer = () => {
|
||||
return (
|
||||
<div className="main-page-wrapper p0">
|
||||
|
||||
{/* End Page SEO Content */}
|
||||
|
||||
<HeaderTwo />
|
||||
{/* End Header */}
|
||||
|
||||
{/* =============================================
|
||||
Fancy Hero Four
|
||||
============================================== */}
|
||||
|
||||
<div className="fancy-hero-four bg-event space-fix">
|
||||
<div className="bg-wrapper">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-xl-9 col-lg-11 col-md-10 m-auto">
|
||||
<h6>Contact us</h6>
|
||||
<h2>Feel free to contact us or just say hi!</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.bg-wrapper */}
|
||||
</div>
|
||||
{/* /.fancy-hero-four */}
|
||||
|
||||
{/* =============================================
|
||||
Contact Style Two
|
||||
============================================== */}
|
||||
<div className="contact-style-two">
|
||||
<div className="container">
|
||||
<div className="contact-info-wrapper">
|
||||
<ContactAddress />
|
||||
<Image width={187} height={187}
|
||||
src="/images/shape/64.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-one"
|
||||
/>
|
||||
<Image width={196} height={196}
|
||||
src="/images/shape/65.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-two"
|
||||
/>
|
||||
</div>
|
||||
{/* /.contact-info-wrapper */}
|
||||
|
||||
<div className="form-style-classic mt-200 md-mt-80">
|
||||
<ContactForm />
|
||||
</div>
|
||||
</div>
|
||||
{/* /.contact-style-two */}
|
||||
|
||||
{/* =====================================================
|
||||
Footer Style Four
|
||||
===================================================== */}
|
||||
<footer className="theme-footer-four mt-200 md-mt-150">
|
||||
<div className="top-footer">
|
||||
<div className="container">
|
||||
<FooterFour />
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
|
||||
<div className="container">
|
||||
<div className="bottom-footer-content">
|
||||
<p>
|
||||
Copyright @{new Date().getFullYear()}{" "}
|
||||
<a
|
||||
href="https://themeforest.net/user/ib-themes/portfolio"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
ib-themes
|
||||
</a>{" "}
|
||||
inc.
|
||||
</p>
|
||||
</div>
|
||||
{/* /.bottom-footer */}
|
||||
</div>
|
||||
</footer>
|
||||
{/* /.theme-footer-four */}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactEventOrganizer;
|
||||
@@ -0,0 +1,87 @@
|
||||
import React from "react";
|
||||
|
||||
import Header from "../../../components/header/Header";
|
||||
import ContactAddressTwo from "../../../components/contact/address/ContactAddressTwo";
|
||||
import ContactForm from "../../../components/contact/form/ContactForm";
|
||||
import Footer from "../../../components/footer/Footer";
|
||||
import CopyRight from "../../../components/footer/CopyRight";
|
||||
export const metadata = {
|
||||
title: 'Contact Project Management || Deski-Saas & Software Nextjs Template',
|
||||
description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`,
|
||||
}
|
||||
const ContactProjectManagement = () => {
|
||||
return (
|
||||
<div className="main-page-wrapper">
|
||||
|
||||
{/* End Page SEO Content */}
|
||||
|
||||
<Header />
|
||||
{/* End Header */}
|
||||
|
||||
{/* =============================================
|
||||
Fancy Hero One
|
||||
============================================== */}
|
||||
<div className="fancy-hero-one">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-xl-9 col-lg-11 m-auto">
|
||||
<div className="page-title">Contact us</div>
|
||||
<h2 className="font-rubik">
|
||||
Feel free to contact us or just say hi!
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
{/* End .row */}
|
||||
</div>
|
||||
{/* End .container */}
|
||||
<div className="bubble-one"></div>
|
||||
<div className="bubble-two"></div>
|
||||
<div className="bubble-three"></div>
|
||||
<div className="bubble-four"></div>
|
||||
<div className="bubble-five"></div>
|
||||
<div className="bubble-six"></div>
|
||||
</div>
|
||||
{/* /.fancy-hero-one */}
|
||||
|
||||
{/* =============================================
|
||||
Contact Us Light
|
||||
============================================== */}
|
||||
<div className="contact-us-light pt-140 pb-200 md-pt-90 md-pb-80">
|
||||
<div className="bubble-one"></div>
|
||||
<div className="bubble-two"></div>
|
||||
<div className="bubble-three"></div>
|
||||
<div className="bubble-four"></div>
|
||||
<div className="container">
|
||||
<ContactAddressTwo />
|
||||
<div className="form-style-light">
|
||||
<ContactForm />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.contact-us-light */}
|
||||
|
||||
{/* =====================================================
|
||||
Footer Style One
|
||||
===================================================== */}
|
||||
<footer className="theme-footer-one pt-130 md-pt-70">
|
||||
<div className="top-footer">
|
||||
<div className="container">
|
||||
<Footer />
|
||||
</div>
|
||||
{/* /.container */}
|
||||
</div>
|
||||
{/* /.top-footer */}
|
||||
|
||||
<div className="container">
|
||||
<div className="bottom-footer-content">
|
||||
<CopyRight />
|
||||
</div>
|
||||
{/* /.bottom-footer */}
|
||||
</div>
|
||||
</footer>
|
||||
{/* /.theme-footer-one */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactProjectManagement;
|
||||
Reference in New Issue
Block a user