first commit
This commit is contained in:
+182
@@ -0,0 +1,182 @@
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
|
||||
import Header from "../components/header/HeaderFour";
|
||||
import HeroBannerFour from "../components/hero-banner/HeroBannerFour";
|
||||
import About from "../components/about/About";
|
||||
import FeatureNine from "../components/features/FeatureNine";
|
||||
import Faq from "../components/faq/Faq";
|
||||
import PricingThree from "../components/pricing/PricingThree";
|
||||
import TestimonialThree from "../components/testimonial/TestimonialThree";
|
||||
import FaqFour from "../components/faq/FaqFour";
|
||||
import FooterFour from "../components/footer/FooterFour";
|
||||
import CallToActionFive from "../components/call-to-action/CallToActionFive";
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
export const metadata = {
|
||||
title: '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.`,
|
||||
}
|
||||
|
||||
export default function Home () {
|
||||
return (
|
||||
<div className="main-page-wrapper p0">
|
||||
|
||||
|
||||
|
||||
<Header />
|
||||
{/* End HeaderFour */}
|
||||
|
||||
|
||||
<HeroBannerFour />
|
||||
{/* End Hero Banner Four */}
|
||||
|
||||
{/*
|
||||
=============================================
|
||||
Fancy Text Block
|
||||
============================================== */}
|
||||
<div className="fancy-text-block-nineteen mt-250 mb-200 md-mt-150 md-mb-150">
|
||||
<div className="container">
|
||||
<About />
|
||||
</div>
|
||||
</div>
|
||||
{/* End .fancy-text-block-nineteen*/}
|
||||
|
||||
<div className="fancy-feature-nine">
|
||||
<Image
|
||||
width={14}
|
||||
height={19}
|
||||
src="/images/shape/107.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-one"
|
||||
/>
|
||||
<Image
|
||||
width={20}
|
||||
height={17}
|
||||
src="/images/shape/108.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-two"
|
||||
/>
|
||||
<Image
|
||||
width={16}
|
||||
height={24}
|
||||
src="/images/shape/109.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-three"
|
||||
/>
|
||||
<Image
|
||||
width={16}
|
||||
height={24}
|
||||
src="/images/shape/110.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-four"
|
||||
/>
|
||||
<Image
|
||||
width={18}
|
||||
height={22}
|
||||
src="/images/shape/111.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-five"
|
||||
/>
|
||||
<Image
|
||||
width={23}
|
||||
height={18}
|
||||
src="/images/shape/112.svg"
|
||||
alt="shape"
|
||||
className="shapes shape-six"
|
||||
/>
|
||||
|
||||
<div className="container">
|
||||
<div className="title-style-five text-center mb-60 md-mb-30">
|
||||
<h6>GET STARTED IN MINUTES</h6>
|
||||
<h2>
|
||||
<span>3 simple & easy step to launch.</span>
|
||||
</h2>
|
||||
</div>
|
||||
{/* End title */}
|
||||
|
||||
<FeatureNine />
|
||||
</div>
|
||||
</div>
|
||||
{/* /.fancy-feature-nine */}
|
||||
|
||||
{/*
|
||||
=============================================
|
||||
Fqa Text Block
|
||||
============================================== */}
|
||||
<div className="fancy-text-block-six overflow-hidden mt-250 md-mt-200">
|
||||
<div className="container">
|
||||
<div className="row align-items-center">
|
||||
<div
|
||||
className="col-lg-6"
|
||||
data-aos="fade-right"
|
||||
data-aos-duration="1200"
|
||||
>
|
||||
<div className="title-style-five mb-35">
|
||||
<h6>Why choose us</h6>
|
||||
<h2>
|
||||
<span>Why you should</span> choose us?
|
||||
</h2>
|
||||
</div>
|
||||
{/* End title */}
|
||||
<Faq />
|
||||
</div>
|
||||
|
||||
<div
|
||||
className="col-lg-6 col-md-8 m-auto"
|
||||
data-aos="fade-left"
|
||||
data-aos-duration="1200"
|
||||
>
|
||||
<div className="illustration-holder d-flex justify-content-end md-mt-50">
|
||||
<Image width={509} height={633} style={{height:'fit-content'}} src="/images/media/img_58.png" alt="media" />
|
||||
<Image width={304} height={304}
|
||||
src="/images/shape/113.svg"
|
||||
alt="media"
|
||||
className="shapes shape-one"
|
||||
/>
|
||||
</div>
|
||||
{/* /.illustration-holder */}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* /.why should you choose us */}
|
||||
|
||||
|
||||
|
||||
{/*
|
||||
=============================================
|
||||
Footer Four
|
||||
============================================== */}
|
||||
<footer className="theme-footer-four">
|
||||
<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="/"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
NAME OF
|
||||
</a>{" "}
|
||||
PRODUCT.
|
||||
</p>
|
||||
</div>
|
||||
{/* /.bottom-footer */}
|
||||
</div>
|
||||
</footer>
|
||||
{/* /.theme-footer-four */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user