commit 4723ae04cdbc9ce92236adf21b24f4ec29ccbe52 Author: Alaguraj0361 Date: Wed Sep 3 17:47:05 2025 +0530 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6bba59 --- /dev/null +++ b/.gitignore @@ -0,0 +1,130 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc181d7 Binary files /dev/null and b/README.md differ diff --git a/components/blog/BlogCard1.js b/components/blog/BlogCard1.js new file mode 100644 index 0000000..cf73dd4 --- /dev/null +++ b/components/blog/BlogCard1.js @@ -0,0 +1,41 @@ +import Link from "next/link" + +export default function BlogCard1({ item }) { + return ( + <> +
+
+
+ + img + +
+
+
+ Business Insurance + + + + +
+
+ blog Bradley R Grady +
+

+ {item.title} +

+
+ Read More + + + + Post a Comment + +
+
+
+
+ + + ) +} diff --git a/components/blog/BlogCard2.js b/components/blog/BlogCard2.js new file mode 100644 index 0000000..d6ab515 --- /dev/null +++ b/components/blog/BlogCard2.js @@ -0,0 +1,42 @@ +import Link from "next/link" + +export default function BlogCard2({ item }) { + return ( + <> + +
+
+
+
+ + + + +
+
+ + img + +
+
+
+
+
+
+
+ gavatar Jason P Laforce +
+

+ {item.title} +

+

Sed ut perspiciatis unde omnis iste natus error sit voluptatem…

+ Read More + +
+
+
+
+ + + ) +} diff --git a/components/blog/BlogCard3.js b/components/blog/BlogCard3.js new file mode 100644 index 0000000..73a9df2 --- /dev/null +++ b/components/blog/BlogCard3.js @@ -0,0 +1,45 @@ +import Link from "next/link" + +export default function BlogCard3({ item }) { + return ( + <> +
+
+
+
+ + img + +
+
+
+
+ + + + +
+
+
+ gavatar Bradley R Grady +
+

+ Former insures only the marine perils +

+

Sed ut perspiciatis unde omnis iste natus error sit voluptatem…

+
+ Read More + + + + Post a Comment + +
+
+
+
+
+ + + ) +} diff --git a/components/blog/BlogPost.js b/components/blog/BlogPost.js new file mode 100644 index 0000000..4797c7a --- /dev/null +++ b/components/blog/BlogPost.js @@ -0,0 +1,83 @@ + +import { useEffect, useState } from "react" +import data from "../../util/blog.json" +import BlogCard1 from "./BlogCard1" +import BlogCard2 from "./BlogCard2" +import BlogCard3 from "./BlogCard3" +import Pagination from "./Pagination" +export default function BlogPost({ style, showItem, showPagination }) { + // console.log(products); + let [currentPage, setCurrentPage] = useState(1) + let showLimit = showItem, + paginationItem = 4 + + let [pagination, setPagination] = useState([]) + let [limit, setLimit] = useState(showLimit) + let [pages, setPages] = useState(Math.ceil(data.length / limit)) + + useEffect(() => { + cratePagination() + }, [limit, pages, data.length]) + + const cratePagination = () => { + // set pagination + let arr = new Array(Math.ceil(data.length / limit)) + .fill() + .map((_, idx) => idx + 1) + + setPagination(arr) + setPages(Math.ceil(data.length / limit)) + } + + const startIndex = currentPage * limit - limit + const endIndex = startIndex + limit + const getPaginatedProducts = data.slice(startIndex, endIndex) + + + let start = Math.floor((currentPage - 1) / paginationItem) * paginationItem + let end = start + paginationItem + const getPaginationGroup = pagination.slice(start, end) + + const next = () => { + setCurrentPage((page) => page + 1) + } + + const prev = () => { + setCurrentPage((page) => page - 1) + } + + const handleActive = (item) => { + setCurrentPage(item) + } + return ( + <> + + + {getPaginatedProducts.length === 0 && ( +

No Products Found

+ )} + + {getPaginatedProducts.map(item => ( + <> + {!style && } + {style === 1 && } + {style === 2 && } + {style === 3 && } + + ))} + + {showPagination && + + } + + ) +} \ No newline at end of file diff --git a/components/blog/Pagination.js b/components/blog/Pagination.js new file mode 100644 index 0000000..03b591a --- /dev/null +++ b/components/blog/Pagination.js @@ -0,0 +1,67 @@ +export default function Pagination({ + prev, + currentPage, + getPaginationGroup, + next, + pages, + handleActive, +}) { + return ( + <> + + {/*
    +
  • + 1 +
  • +
  • + 2 +
  • +
  • + + + +
  • +
*/} +
    + {getPaginationGroup.length <= 0 ? null : ( +
  • + {currentPage === 1 ? null : ( + + + + )} +
  • + )} + + {getPaginationGroup.map((item, index) => { + return ( +
  • handleActive(item)} + key={index} + className={ + currentPage === item + ? "page-item active" + : "page-item" + } + > + {item} +
  • + ) + })} + + {getPaginationGroup.length <= 0 ? null : ( +
  • + {currentPage >= pages ? null : ( + + + + )} +
  • + )} +
+ + + + + ) +} \ No newline at end of file diff --git a/components/elements/BackToTop.js b/components/elements/BackToTop.js new file mode 100644 index 0000000..a103afb --- /dev/null +++ b/components/elements/BackToTop.js @@ -0,0 +1,32 @@ +import { useEffect, useState } from "react" + +export default function BackToTop() { + const [hasScrolled, setHasScrolled] = useState("false") + + useEffect(() => { + window.addEventListener("scroll", onScroll) + return () => { + window.removeEventListener("scroll", onScroll) + } + }) + + const onScroll = () => { + if (window.scrollY > 100 && !hasScrolled) { + setHasScrolled(true) + } else if (window.scrollY < 100 && hasScrolled) { + setHasScrolled(false) + } + } + + return ( + <> + {hasScrolled && ( + + + + + + )} + + ) +} \ No newline at end of file diff --git a/components/elements/CounterUp.js b/components/elements/CounterUp.js new file mode 100644 index 0000000..9dd8fe2 --- /dev/null +++ b/components/elements/CounterUp.js @@ -0,0 +1,18 @@ +import { useState } from 'react' +import CountUp from "react-countup" +import ScrollTrigger from 'react-scroll-trigger' + +export default function CounterUp({ count, time, color }) { + const [counterOn, setCounterOn] = useState(false) + return ( + <> + setCounterOn(true)} onExit={() => setCounterOn(false)} component="span"> + + {({ countUpRef }) => ( + + )} + + + + ) +} \ No newline at end of file diff --git a/components/elements/PortfolioFilter1.js b/components/elements/PortfolioFilter1.js new file mode 100644 index 0000000..542eda1 --- /dev/null +++ b/components/elements/PortfolioFilter1.js @@ -0,0 +1,243 @@ + +import Isotope from "isotope-layout" +import Link from 'next/link' +import { useCallback, useEffect, useRef, useState } from "react" + +export default function PortfolioFilter1() { + // Isotope + const isotope = useRef() + const [filterKey, setFilterKey] = useState("*") + useEffect(() => { + setTimeout(() => { + isotope.current = new Isotope(".portfoliocontainer", { + itemSelector: ".portfolio-wrapper", + // layoutMode: "fitRows", + percentPosition: true, + masonry: { + columnWidth: ".portfolio-wrapper", + }, + animationOptions: { + duration: 750, + easing: "linear", + queue: false, + }, + }) + }, 1000) + }, []) + useEffect(() => { + if (isotope.current) { + filterKey === "*" + ? isotope.current.arrange({ filter: `*` }) + : isotope.current.arrange({ filter: `.${filterKey}` }) + } + }, [filterKey]) + const handleFilterKeyChange = useCallback((key) => () => { + setFilterKey(key) + }, + [] + ) + + const activeBtn = (value) => (value === filterKey ? "trans current" : "") + return ( + <> +
+
+
+
    +
  • View All
  • +
  • Car
  • +
  • Fire +
  • +
  • House
  • +
  • Life
  • +
  • Medical
  • +
  • Travel
  • +
+
+
+
+
+
+
+
+ img + + +
+
+
+
+

+ + Affordable Insurance + +

+

+ Online survey

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Progressive Insurance

+

+ Insurance coverage

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Classic Insurance

+

+ Hassle Free Claims

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Insurance benefit

+

+ Insure Instantly

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Business strategy

+

+ No Claim Bonus

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Rise of insurance

+

+ Business Details

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Market Expansion

+

+ Coaching

+
+ + + + + +
+
+
+
+
+
+ img + + +
+
+
+
+

Business Growth

+

+ Business Policy

+
+ + + + + +
+
+
+
+ + ) +} diff --git a/components/elements/PortfolioFilterStyle1.js b/components/elements/PortfolioFilterStyle1.js new file mode 100644 index 0000000..210ece5 --- /dev/null +++ b/components/elements/PortfolioFilterStyle1.js @@ -0,0 +1,306 @@ + +import Isotope from "isotope-layout" +import Link from 'next/link' +import { useCallback, useEffect, useRef, useState } from "react" + +export default function PortfolioStyle1() { + // Isotope + const isotope = useRef() + const [filterKey, setFilterKey] = useState("*") + useEffect(() => { + setTimeout(() => { + isotope.current = new Isotope(".portfoliocontainer", { + itemSelector: ".portfolio-wrapper", + // layoutMode: "fitRows", + percentPosition: true, + masonry: { + columnWidth: ".portfolio-wrapper", + }, + animationOptions: { + duration: 750, + easing: "linear", + queue: false, + }, + }) + }, 1000) + }, []) + useEffect(() => { + if (isotope.current) { + filterKey === "*" + ? isotope.current.arrange({ filter: `*` }) + : isotope.current.arrange({ filter: `.${filterKey}` }) + } + }, [filterKey]) + const handleFilterKeyChange = useCallback((key) => () => { + setFilterKey(key) + }, + [] + ) + + const activeBtn = (value) => (value === filterKey ? "trans current" : "") + return ( + <> +
+
+
+
    +
  • View All
  • +
  • Car
  • +
  • Fire +
  • +
  • House
  • +
  • Life
  • +
  • Medical
  • +
  • Travel
  • +
+
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Affordable Insurance +

+

Online survey

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Progressive Insurance +

+

Insurance coverage

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Classic Insurance +

+

Hassle Free Claims

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Insurance benefit +

+

Insure Instantly

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Business strategy +

+

No Claim Bonus

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Rise of insurance +

+

Business Details

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Market Expansion +

+

Coaching

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Business Growth +

+

Business Policy

+ + + + + +
+
+
+
+
+
+
+ img + + + +
+
+
+
+
+
+
+

+ Insurance Groups +

+

Policy Renewal

+ + + + + +
+
+
+
+
+ + ) +} diff --git a/components/elements/PortfolioFilterStyle2.js b/components/elements/PortfolioFilterStyle2.js new file mode 100644 index 0000000..19a5a1f --- /dev/null +++ b/components/elements/PortfolioFilterStyle2.js @@ -0,0 +1,255 @@ + +import Isotope from "isotope-layout" +import Link from 'next/link' +import { useCallback, useEffect, useRef, useState } from "react" + +export default function PortfolioStyle2() { + // Isotope + const isotope = useRef() + const [filterKey, setFilterKey] = useState("*") + useEffect(() => { + setTimeout(() => { + isotope.current = new Isotope(".portfoliocontainer", { + itemSelector: ".portfolio-wrapper", + // layoutMode: "fitRows", + percentPosition: true, + masonry: { + columnWidth: ".portfolio-wrapper", + }, + animationOptions: { + duration: 750, + easing: "linear", + queue: false, + }, + }) + }, 1000) + }, []) + useEffect(() => { + if (isotope.current) { + filterKey === "*" + ? isotope.current.arrange({ filter: `*` }) + : isotope.current.arrange({ filter: `.${filterKey}` }) + } + }, [filterKey]) + const handleFilterKeyChange = useCallback((key) => () => { + setFilterKey(key) + }, + [] + ) + + const activeBtn = (value) => (value === filterKey ? "trans current " : "") + return ( + <> +
+
+
+
    +
  • View All
  • +
  • Car
  • +
  • Fire +
  • +
  • House
  • +
  • Life
  • +
  • Medical
  • +
  • Travel
  • +
+
+
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Insurance Groups +

+

Policy Renewal

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Business Growth +

+

Business Policy

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Market Expansion +

+

Coaching

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Rise of insurance +

+

Business Details

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Business strategy +

+

No Claim Bonus

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Insurance benefit +

+

Insure Instantly

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Classic Insurance +

+

Hassle Free Claims

+
+ + + + + +
+
+
+
+
+
+ img + + + +
+
+
+
+

+ Progressive Insurance +

+

Insurance coverage

+
+ + + + + +
+
+
+
+ + ) +} diff --git a/components/elements/Preloader.js b/components/elements/Preloader.js new file mode 100644 index 0000000..b19d2ac --- /dev/null +++ b/components/elements/Preloader.js @@ -0,0 +1,16 @@ +export default function Preloader() { + return ( + <> +
+
+
+
+
+
+
+
+
+ + + ) +} diff --git a/components/elements/QuantityInput.js b/components/elements/QuantityInput.js new file mode 100644 index 0000000..ecf4fd2 --- /dev/null +++ b/components/elements/QuantityInput.js @@ -0,0 +1,24 @@ +import { useState } from 'react' +export default function QuantityInput() { + const [value, setValue] = useState(1) + + const handleUpClick = () => { + setValue(value + 1) + } + + const handleDownClick = () => { + setValue(value - 1) + } + + return ( + <> + +
+ + + setValue(e.target.value)} /> + +
+ + ) +} \ No newline at end of file diff --git a/components/elements/ThumbSlider.js b/components/elements/ThumbSlider.js new file mode 100644 index 0000000..f201fe7 --- /dev/null +++ b/components/elements/ThumbSlider.js @@ -0,0 +1,112 @@ +import { useEffect, useState } from "react" +import Slider from "react-slick" +import "slick-carousel/slick/slick-theme.css" +import "slick-carousel/slick/slick.css" + +const data = [ + { + id: 1, + image: "/assets/images/shop/product-1-min.png", + bigImage: "/assets/images/shop/product-1-min.png" + }, + { + id: 2, + image: "/assets/images/shop/product-2-min.png", + bigImage: "/assets/images/shop/product-2-min.png" + }, + { + id: 3, + image: "/assets/images/shop/product-3-min.png", + bigImage: "/assets/images/shop/product-3-min.png" + }, + { + id: 4, + image: "/assets/images/shop/product-4-min.png", + bigImage: "/assets/images/shop/product-4-min.png" + }, + { + id: 5, + image: "/assets/images/shop/product-5-min.png", + bigImage: "/assets/images/shop/product-5-min.png" + }, + { + id: 6, + image: "/assets/images/shop/product-4-min.png", + bigImage: "/assets/images/shop/product-6-min.png" + }, +] + +const ThumbSlider = () => { + const [nav1, setNav1] = useState(null) + const [nav2, setNav2] = useState(null) + const [slider1, setSlider1] = useState(null) + const [slider2, setSlider2] = useState(null) + + useEffect(() => { + setNav1(slider1) + setNav2(slider2) + }, [slider2, slider1]) + + const settingsMain = { + slidesToShow: 1, + slidesToScroll: 1, + arrows: false, + fade: true, + asNavFor: ".slider-nav" + } + + const settingsThumbs = { + slidesToShow: 5, + slidesToScroll: 1, + asNavFor: ".slider-for", + dots: false, + centerMode: true, + swipeToSlide: true, + focusOnSelect: true, + centerPadding: "0px", + arrows: false + } + + return ( + <> + setSlider1(slider)} + > + {data.map((item, index) => ( + image + ))} + + +
+ setSlider2(slider)} + > + {data.map((item) => ( +
+ +
+ ))} +
+ + ) +} + +export default ThumbSlider \ No newline at end of file diff --git a/components/elements/VideoBox.js b/components/elements/VideoBox.js new file mode 100644 index 0000000..1f7fcf0 --- /dev/null +++ b/components/elements/VideoBox.js @@ -0,0 +1,12 @@ +import { useState } from "react" +import ModalVideo from 'react-modal-video' +import "../../node_modules/react-modal-video/css/modal-video.css" +export default function VideoBox() { + const [isOpen, setOpen] = useState(false) + return ( + <> + setOpen(true)} className="lightbox-image"> + setOpen(false)} /> + + ) +} diff --git a/components/layout/Breadcrumb.js b/components/layout/Breadcrumb.js new file mode 100644 index 0000000..adbd45a --- /dev/null +++ b/components/layout/Breadcrumb.js @@ -0,0 +1,30 @@ +import Link from "next/link" + +export default function Breadcrumb({breadcrumbTitle}) { + return ( + <> +
+
+
+
+
+
+
+
+ {breadcrumbTitle}
+
+
+
+
    +
  • Home
  • +
  • {breadcrumbTitle}
  • +
+
+
+
+
+
+ + + ) +} diff --git a/components/layout/Layout.js b/components/layout/Layout.js new file mode 100644 index 0000000..f956fd0 --- /dev/null +++ b/components/layout/Layout.js @@ -0,0 +1,79 @@ +import { useEffect, useState } from "react" +import BackToTop from '../elements/BackToTop' +import Breadcrumb from './Breadcrumb' +import MobileMenu from "./MobileMenu" +import OptionalPanel from "./OptionalPanel" +import SearchPopup from "./SearchPopup" +import StickyHeader from "./StickyHeader" +import Footer1 from './footer/Footer1' +import Footer2 from "./footer/Footer2" +import Footer3 from "./footer/Footer3" +import Footer4 from "./footer/Footer4" +import Footer5 from "./footer/Footer5" +import Footer6 from "./footer/Footer6" +import Header1 from './header/Header1' +import Header2 from "./header/Header2" +import Header3 from "./header/Header3" +import Header4 from "./header/Header4" +import Header5 from "./header/Header5" +import Header6 from "./header/Header6" +export default function Layout({ headerStyle, footerStyle, pageCls, breadcrumbTitle, children }) { + // Search + const [isSearch, setSearch] = useState(false) + const handleSearch = () => setSearch(!isSearch) + + // Optional Panel + const [isOptionalPanel, setOptionalPanel] = useState(false) + const handleOptionalPanel = () => setOptionalPanel(!isOptionalPanel) + + // Moblile Menu + const [isMobileMenu, setMobileMenu] = useState(false) + const handleMobileMenu = () => setMobileMenu(!isMobileMenu) + + + + // Scroll Header + const [scroll, setScroll] = useState(0) + useEffect(() => { + document.addEventListener("scroll", () => { + const scrollCheck = window.scrollY > 100 + if (scrollCheck !== scroll) { + setScroll(scrollCheck) + } + }) + }) + return ( + <> +
+ + {!headerStyle && } + {headerStyle == 1 ? : null} + {headerStyle == 2 ? : null} + {headerStyle == 3 ? : null} + {headerStyle == 4 ? : null} + {headerStyle == 5 ? : null} + {headerStyle == 6 ? : null} + + + +
+ {breadcrumbTitle && } +
+ {children} +
+ {!footerStyle && < Footer1 />} + {footerStyle == 1 ? < Footer1 /> : null} + {footerStyle == 2 ? < Footer2 /> : null} + {footerStyle == 3 ? < Footer3 /> : null} + {footerStyle == 4 ? < Footer4 /> : null} + {footerStyle == 5 ? < Footer5 /> : null} + {footerStyle == 6 ? < Footer6 /> : null} +
+ + + + +
+ + ) +} diff --git a/components/layout/MobileMenu.js b/components/layout/MobileMenu.js new file mode 100644 index 0000000..10899c1 --- /dev/null +++ b/components/layout/MobileMenu.js @@ -0,0 +1,46 @@ +import Link from 'next/link' +import Sidebar from './Sidebar' +export default function MobileMenu({ handleMobileMenu, isMobileMenu }) { + + return ( + <> +
+
+
+ +
+
+ + ) +} diff --git a/components/layout/NavbarNav.js b/components/layout/NavbarNav.js new file mode 100644 index 0000000..60efba4 --- /dev/null +++ b/components/layout/NavbarNav.js @@ -0,0 +1,322 @@ +import Link from "next/link" + +export default function NavbarNav() { + + return ( + <> + +
    +
  • + + Home + +
      +
    • + + + icon + + Home 1 + +
    • +
    • + + + icon + + Home 2 + +
    • +
    • + + + icon + + Home 3 + +
    • +
    • + + + icon + + Home 4 + +
    • +
    • + + + icon + + Home 5 + +
    • +
    • + + + icon + + Home 6 + +
    • +
    +
    +
  • +
  • + + + Pages + + +
      +
    • + + About + Us + + +
    • +
    • + + + Faq’s + + +
    • +
    • + + + Pricing + + +
    • +
    • + + + Team + + +
    • +
    • + + Team + Detail + + +
    • +
    +
    +
  • +
  • + + + Services + + +
      +
    • + + + Service Style 1 + + +
    • +
    • + + + Service Style 2 + + +
    • +
    • + + + Service Style 3 + + +
    • +
    • + + + Service Style 4 + + +
    • +
    • + + + Service Style 5 + + +
    • +
    • + + + Service Style 6 + + +
    • +
    • + + + Service Details + + +
    • +
    +
    +
  • +
  • + + + Portfolio + + +
      +
    • + + + Portfolio Style 1 + + +
    • +
    • + + + Portfolio Style 2 + + +
    • +
    • + + + Portfolio Details + + +
    • +
    +
    +
  • +
  • + + + Blog + + +
      +
    • + + + Blog Grid + + +
        +
      • + + + Blog Default + + +
      • +
      • + + + Blog Style 1 + + +
      • +
      • + + + Blog Style 2 + + +
      • +
      +
    • +
    • + Blog + Details +
        +
      • + + + No Sidebar + + +
      • +
      • + + + Left Sidebar + + +
      • +
      • + + + Right Sidebar + + +
      • +
      +
    • +
    +
    +
  • +
  • + + + Shop + + +
      +
    • + + + Products + + +
    • +
    • + + + Product Details + + +
    • +
    • + + + My account + + +
    • +
    • + + + Cart + + +
    • +
    • + + + Checkout + + +
    • +
    +
    +
  • +
  • + + + Contact + + +
  • +
+ + ) +} diff --git a/components/layout/OptionalPanel.js b/components/layout/OptionalPanel.js new file mode 100644 index 0000000..3e529d7 --- /dev/null +++ b/components/layout/OptionalPanel.js @@ -0,0 +1,128 @@ +import Link from "next/link" +import { Autoplay, Navigation, Pagination } from "swiper" +import { Swiper, SwiperSlide } from "swiper/react" + +const swiperOptions = { + modules: [Autoplay, Pagination, Navigation], + slidesPerView: 2, + spaceBetween: 20, + autoplay: { + delay: 2500, + disableOnInteraction: false, + }, + loop: true, + + // Navigation + navigation: { + nextEl: '.owl-next', + prevEl: '.owl-prev', + }, + + // Pagination + pagination: { + el: '.swiper-pagination', + clickable: true, + } +} + + +export default function OptionalPanel({ isOptionalPanel, handleOptionalPanel }) { + return ( + <> +
+
+
+
+ +
+
+
+ + Vankine + +
Denounce with righteous indignation and dislike men who are beguiled + and demoralized by the charms pleasure moment so blinded desire that they cannot foresee the + pain and trouble.
+
+
+
+

Latest Portfolio

+
+ + + + img +

+ Former insures only the marine perils +

+ +
+ + + img +

+ Insurance covers risk of fire absence +

+ +
+ + + img +

Erving the interests of our clients +

+ +
+ + + img +

+ Guide To Audio Visual With JavaScript GSA +

+ +
+ + + img +

+ Building Web Layouts For Dual Foldable + Devices +

+ +
+
+ + +
+ +
+
+
+

Need Any Help? Or Looking For an Agent

+
+
+ + 9806071234 +
+
+ + sendmail@example.com +
+ +
+
© {new Date().getFullYear()} Vankine. All Rights Reserved.
+
+
+
+
+ + + ) +} diff --git a/components/layout/SearchPopup.js b/components/layout/SearchPopup.js new file mode 100644 index 0000000..d0a3907 --- /dev/null +++ b/components/layout/SearchPopup.js @@ -0,0 +1,27 @@ + +export default function SearchPopup({ isSearch, handleSearch, handleOptionalPanel }) { + return ( + <> +
+
+ +
+
+
+
+
+
+ + + +
+
+
+
+ + + + ) +} diff --git a/components/layout/Sidebar.js b/components/layout/Sidebar.js new file mode 100644 index 0000000..b1c228b --- /dev/null +++ b/components/layout/Sidebar.js @@ -0,0 +1,338 @@ +import Link from "next/link" +import { useState } from "react" + +export default function Sidebar() { + const [isActive, setIsActive] = useState({ + status: false, + key: "", + }) + + const handleToggle = (key) => { + if (isActive.key === key) { + setIsActive({ + status: false, + }) + } else { + setIsActive({ + status: true, + key, + }) + } + } + return ( + <> +
    +
  • + + Home + +
      +
    • + + + icon + + Home 1 + +
    • +
    • + + + icon + + Home 2 + +
    • +
    • + + + icon + + Home 3 + +
    • +
    • + + + icon + + Home 4 + +
    • +
    • + + + icon + + Home 5 + +
    • +
    • + + + icon + + Home 6 + +
    • +
    +
    handleToggle(1)}>
    +
  • +
  • + + + Pages + + +
      +
    • + + About + Us + + +
    • +
    • + + + Faq’s + + +
    • +
    • + + + Pricing + + +
    • +
    • + + + Team + + +
    • +
    • + + Team + Detail + + +
    • +
    +
    handleToggle(2)}>
    +
  • +
  • + + + Services + + +
      +
    • + + + Service Style 1 + + +
    • +
    • + + + Service Style 2 + + +
    • +
    • + + + Service Style 3 + + +
    • +
    • + + + Service Style 4 + + +
    • +
    • + + + Service Style 5 + + +
    • +
    • + + + Service Style 6 + + +
    • +
    • + + + Service Details + + +
    • +
    +
    handleToggle(3)}>
    +
  • +
  • + + + Portfolio + + +
      +
    • + + + Portfolio Style 1 + + +
    • +
    • + + + Portfolio Style 2 + + +
    • +
    • + + + Portfolio Details + + +
    • +
    +
    handleToggle(4)}>
    +
  • +
  • + + + Blog + + +
      +
    • + + + Blog Grid + + +
        +
      • + + + Blog Default + + +
      • +
      • + + + Blog Style 1 + + +
      • +
      • + + + Blog Style 2 + + +
      • +
      +
    • +
    • + Blog + Details +
        +
      • + + + No Sidebar + + +
      • +
      • + + + Left Sidebar + + +
      • +
      • + + + Right Sidebar + + +
      • +
      +
    • +
    +
    handleToggle(5)}>
    +
  • +
  • + + + Shop + + +
      +
    • + + + Products + + +
    • +
    • + + + Product Details + + +
    • +
    • + + + My account + + +
    • +
    • + + + Cart + + +
    • +
    • + + + Checkout + + +
    • +
    +
    handleToggle(1)}>
    +
  • +
  • + + + Contact + + +
  • +
+ + ) +} diff --git a/components/layout/StickyHeader.js b/components/layout/StickyHeader.js new file mode 100644 index 0000000..fda2983 --- /dev/null +++ b/components/layout/StickyHeader.js @@ -0,0 +1,60 @@ +import Link from "next/link" +import NavbarNav from "./NavbarNav" + +export default function StickyHeader({ scroll, handleSearch, handleOptionalPanel, handleMobileMenu }) { + return ( + <> +
+
+
+
+
+
+
+ + Vankine + +
+
+
+
+ +
+ +
+
+
+
+
+ {/*menu icon*/} +
+ + + +
+ {/*menu icon*/} +
+ + Get A Quote + + + + +
+
+ + + + +
+
+
+
+
+
+
+
+ + + ) +} diff --git a/components/layout/footer/Footer1.js b/components/layout/footer/Footer1.js new file mode 100644 index 0000000..5769b36 --- /dev/null +++ b/components/layout/footer/Footer1.js @@ -0,0 +1,412 @@ +import Link from "next/link" + +export default function Footer1({ }) { + return ( + <> +
+
+ img +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} + {/*footer content top*/} +
+
+
+
+

+ Find an Insurance Agent or Start + Tracking your Claims +

+
+
+
+ + Track Your Claim + +
+
+
+ +
+
+
Need Help?
+
+000(123)456 88
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ {/*footer content top*/} +
+
+
+
+
+
+ + Vankine + +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ Sed ut perspiciatis unde omnis iste natus errors voluptatem accusantium + doloremque laudantium totam +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+ + +
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+

Services

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + House Insurance + +
    +
  • +
  • +
    +
    + +
    + + Medical Insurance + +
    +
  • +
  • +
    +
    + +
    + + Car Insurance + +
    +
  • +
  • +
    +
    + +
    + + Business Insurance + +
    +
  • +
  • +
    +
    + +
    + + Travel Insurance + +
    +
  • +
  • +
    +
    + +
    + + Fire Insurance + +
    +
  • +
  • +
    +
    + +
    + + Marrige Insurance + +
    +
  • +
+
+
+
+
+
+
+

Other Pages

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + My Account + +
    +
  • +
  • +
    +
    + +
    + + Need A Career? + +
    +
  • +
  • +
    +
    + +
    + + News & Blog + +
    +
  • +
  • +
    +
    + +
    + + Payment Way + +
    +
  • +
  • +
    +
    + +
    + + Team Member + +
    +
  • +
  • +
    +
    + +
    + + About Us + +
    +
  • +
+
+
+
+
+
+
+
+
+

Photo Gallery

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+ + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + + + img + + + + + + + +
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+
    +
  • +
    +
    + img +
    + + Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved + +
    +
  • +
+
+
+
+
+
    +
  • +
    +
    + +
    + + Working Hours : Sun-monday, 09am-5pm + +
    +
  • +
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ img +
+
+ + + ) +} diff --git a/components/layout/footer/Footer2.js b/components/layout/footer/Footer2.js new file mode 100644 index 0000000..ce9f908 --- /dev/null +++ b/components/layout/footer/Footer2.js @@ -0,0 +1,321 @@ +import Link from "next/link" + +export default function Footer2({ }) { + return ( + <> +
+
+ img +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+ + Vankine + +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ Sed ut perspiciatis omnis laudantium natus errors voluptatem accusantium + doloremque laudantium totam +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+

Follow Us

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+

Services

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + House Insurance + +
    +
  • +
  • +
    +
    + +
    + + Medical Insurance + +
    +
  • +
  • +
    +
    + +
    + + Car Insurance + +
    +
  • +
  • +
    +
    + +
    + + Business Insurance + +
    +
  • +
  • +
    +
    + +
    + + Travel Insurance + +
    +
  • +
  • +
    +
    + +
    + + Fire Insurance + +
    +
  • +
  • +
    +
    + +
    + + Marrige Insurance + +
    +
  • +
+
+
+
+
+
+
+

Other Pages

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + My Account + +
    +
  • +
  • +
    +
    + +
    + + Need A Career? + +
    +
  • +
  • +
    +
    + +
    + + News & Blog + +
    +
  • +
  • +
    +
    + +
    + + Payment Way + +
    +
  • +
  • +
    +
    + +
    + + Team Member + +
    +
  • +
  • +
    +
    + +
    + + About Us + +
    +
  • +
+
+
+
+
+
+
+
+
+

Newsletter

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+ Sed ut perspiciatis unde omniste natus errors volupta accus +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+ + +
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
Need Help?
+
+000(123)456 88 +
+
+
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+
    +
  • +
    +
    + img +
    + + Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved + +
    +
  • +
+
+
+
+
+
    +
  • +
    +
    + +
    + + Working Hours : Sun-monday, 09am-5pm + +
    +
  • +
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ img +
+
+ + + ) +} diff --git a/components/layout/footer/Footer3.js b/components/layout/footer/Footer3.js new file mode 100644 index 0000000..23a1b04 --- /dev/null +++ b/components/layout/footer/Footer3.js @@ -0,0 +1,275 @@ +import Link from "next/link" + +export default function Footer3({ }) { + return ( + <> +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} + {/*footer content top*/} +
+
+
+
+
+
+ + Vankine + +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ Sed ut perspiciatis unde omnis iste natus errors voluptatem accusantium + doloremque laudantium totam +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+ + +
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+

Services

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + House Insurance + +
    +
  • +
  • +
    +
    + +
    + + Medical Insurance + +
    +
  • +
  • +
    +
    + +
    + + Car Insurance + +
    +
  • +
  • +
    +
    + +
    + + Business Insurance + +
    +
  • +
  • +
    +
    + +
    + + Travel Insurance + +
    +
  • +
  • +
    +
    + +
    + + Fire Insurance + +
    +
  • +
  • +
    +
    + +
    + + Marrige Insurance + +
    +
  • +
+
+
+
+
+
+
+
+
+

Recent News

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+ + blog + + + + + + +
+

+ + Former insures only the marine perils + +

+

Bradley R Grady

+
+
+
+ + blog + + + + + + +
+

+ + Insurance covers risk of fire absence + +

+

Jason P Laforce

+
+
+
+ + blog + + + + + + +
+

+ + Erving the interests of our clients + +

+

Bradley R Grady

+
+
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+
    +
  • +
    +
    + img +
    + + Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved + +
    +
  • +
+
+
+
+
+
    +
  • +
    +
    + +
    + + Working Hours : Sun-monday, 09am-5pm + +
    +
  • +
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ + + ) +} diff --git a/components/layout/footer/Footer4.js b/components/layout/footer/Footer4.js new file mode 100644 index 0000000..9178abb --- /dev/null +++ b/components/layout/footer/Footer4.js @@ -0,0 +1,135 @@ +import Link from "next/link" + +export default function Footer4({ }) { + return ( + <> +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+

Contact Us

+

+ Find an Insurance Agent or Start + Tracking your Claims +

+
+
+
+ + Track Your Claim + +
+
+
+ +
+
+
Need Help?
+
+000(123)456 88
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
    +
  • +
    +
    + + Home +
    +
  • +
  • +
    +
    + + About +
    +
  • +
  • +
    +
    + + Services +
    +
  • +
  • +
    +
    + + Reviews +
    +
  • +
  • +
    +
    + + Need a Career? +
    +
  • +
  • +
    +
    + + News & Blog +
    +
  • +
  • +
    +
    + + Support +
    +
  • +
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+ + Vankine + +
+
+
+
+ Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ img +
+
+ img +
+
+ img +
+
+ + + ) +} diff --git a/components/layout/footer/Footer5.js b/components/layout/footer/Footer5.js new file mode 100644 index 0000000..de93254 --- /dev/null +++ b/components/layout/footer/Footer5.js @@ -0,0 +1,374 @@ +import Link from "next/link" + +export default function Footer5({ }) { + return ( + <> +
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+ + Vankine + +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ Sed ut perspiciatis unde omnis iste natus errors voluptatem accusantium + doloremque laudantium totam +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+ + +
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+

Services

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    + +
    + + House Insurance + +
    +
  • +
  • +
    +
    + +
    + + Medical Insurance + +
    +
  • +
  • +
    +
    + +
    + + Car Insurance + +
    +
  • +
  • +
    +
    + +
    + + Business Insurance + +
    +
  • +
  • +
    +
    + +
    + + Travel Insurance + +
    +
  • +
  • +
    +
    + +
    + + Fire Insurance + +
    +
  • +
  • +
    +
    + +
    + + Marrige Insurance + +
    +
  • +
+
+
+
+
+
+
+

Other Pages

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+ + blog + + + + + + +
+

+ + Former insures only the marine perils + +

+

Bradley R Grady

+
+
+
+ + blog + + + + + + +
+

+ + Insurance covers risk of fire absence + +

+

Jason P Laforce

+
+
+
+ + blog + + + + + + +
+

+ + Erving the interests of our clients + +

+

Bradley R Grady

+
+
+
+
+
+
+
+
+

Photo Gallery

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+ + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + +
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+
    +
  • +
    +
    + img +
    + + Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved + +
    +
  • +
+
+
+
+
+
    +
  • +
    +
    + +
    + + About + +
    +
  • +
  • +
    +
    + +
    + + Services + +
    +
  • +
  • +
    +
    + +
    + + Faqs + +
    +
  • +
+
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ + + ) +} diff --git a/components/layout/footer/Footer6.js b/components/layout/footer/Footer6.js new file mode 100644 index 0000000..caa71c5 --- /dev/null +++ b/components/layout/footer/Footer6.js @@ -0,0 +1,353 @@ +import Link from "next/link" + +export default function Footer6({ }) { + return ( + <> +
+
+ pattern +
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+ + Vankine + +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+ Sed ut perspiciatis unde omnis iste natus errors voluptatem accusantium + doloremque laudantium totam +
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+ + +
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+

Services

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    +
    + + House Insurance +
    +
  • +
  • +
    +
    +
    + + Medical Insurance +
    +
  • +
  • +
    +
    +
    + + Car Insurance +
    +
  • +
  • +
    +
    +
    + + Business Insurance +
    +
  • +
  • +
    +
    +
    + + Travel Insurance +
    +
  • +
  • +
    +
    +
    + + Fire Insurance +
    +
  • +
  • +
    +
    +
    + + Marrige Insurance +
    +
  • +
+
+
+
+
+
+
+

Other Pages

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
    +
  • +
    +
    +
    + + My Account + +
    +
  • +
  • +
    +
    +
    + + Need A Career? + +
    +
  • +
  • +
    +
    +
    + + News & Blog + +
    +
  • +
  • +
    +
    +
    + + Payment Way + +
    +
  • +
  • +
    +
    +
    + + Team Member + +
    +
  • +
  • +
    +
    +
    + + Products +
    +
  • +
  • +
    +
    +
    + + About Us +
    +
  • +
+
+
+
+
+
+
+
+
+

Photo Gallery

+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+ + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + + + img + + + + + + +
+
+
+
+
+ {/*-============spacing==========-*/} +
+ {/*-============spacing==========-*/} +
+
+
+
+
+
+
    +
  • +
    +
    + img +
    + + Copyright {new Date().getFullYear()}, Vankine. All Rights Reserved + +
    +
  • +
+
+
+
+
+
    +
  • +
    +
    + +
    + + Working Hours : Sun-monday, 09am-5pm + +
    +
  • +
+
+
+
+
+
+
+ + + ) +} diff --git a/components/layout/header/Header1.js b/components/layout/header/Header1.js new file mode 100644 index 0000000..dda3473 --- /dev/null +++ b/components/layout/header/Header1.js @@ -0,0 +1,138 @@ +import Link from "next/link" +import NavbarNav from "../NavbarNav" + +export default function Header1({ handleSearch, handleOptionalPanel, handleMobileMenu }) { + return ( + <> +
+
+
+
+
+
+
+
+
+
+ Working Hours : + Sun-monday, 09am-5pm
+
+ + Call : + +000(123)456989 +
+
+
+
+
+
+ + English + +
    +
  • + + Français + +
  • +
  • + + Deutsch + +
  • +
  • + + Pусский + +
  • +
+
+
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+
+
+
+ {/*logo-shape*/} + + + + + {/*logo-shape*/} + {/*logo*/} + + Vankine + + {/*logo*/} +
+
+
+
+ +
+ +
+
+
+
+
+ {/*menu icon*/} +
+ + + +
+ {/*menu icon*/} +
+ + Get A Quote + + + + +
+
+ + + + +
+
+
+
+
+
+
+
+ + + ) +} diff --git a/components/layout/header/Header2.js b/components/layout/header/Header2.js new file mode 100644 index 0000000..1e9619f --- /dev/null +++ b/components/layout/header/Header2.js @@ -0,0 +1,130 @@ +import Link from "next/link" +import NavbarNav from "../NavbarNav" + +export default function Header2({ handleSearch, handleOptionalPanel, handleMobileMenu }) { + return ( + <> +
+
+
+
+
+
+
+
+ Working Hours : + Sun-monday, 09am-5pm
+
+ + Call : + +000(123)456989 +
+
+ + Mail : + example@gmail.com +
+
+
+
+
+
+ + English + +
    +
  • + + Français + +
  • +
  • + + Deutsch + +
  • +
  • + + Pусский + +
  • +
+
+
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+
+
+
+
+
+
+
+
+ + Vankine + +
+
+
+
+ +
+ +
+
+
+
+
+
+ + + +
+
+ + Get A Quote + + + + +
+
+ + + +
+
+
+
+
+
+
+
+ + + ) +} diff --git a/components/layout/header/Header3.js b/components/layout/header/Header3.js new file mode 100644 index 0000000..ec22a49 --- /dev/null +++ b/components/layout/header/Header3.js @@ -0,0 +1,219 @@ +import Link from "next/link" +import { useState } from "react" +import NavbarNav from "../NavbarNav" + +export default function Header3({ handleSearch, handleOptionalPanel, handleMobileMenu }) { + + const [isSideMenu, setSideMenu] = useState(false) + const handleSideMenu = () => setSideMenu(!isSideMenu) + return ( + <> +
+
+
+
+
+
+
+
+ + Vankine + +
+
+
+
+
+
+
+ +
+
+
Our Locations
+
55 Main Street, USA
+
+
+
+
+
+
+ +
+
+
Email For Us
+
support@gmail.com
+
+
+
+
+
+
+ +
+
+
Call For Us
+
+000 (123) 456 88
+
+
+
+
+
+
+
+ + Contact us + +
+
+ + + +
+
+
+
+
+
+ {/*-side menu-*/} +
+
+
+
+ + + + Menu +
+
+
+
+ +
+
+
+
+ + + +
+
+
+
+
    +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
  • + + + +
  • +
+
+
+
+ + Get A Quote + + + + +
+
+
+
+
+
+
+
+
+ +
+
+
+ + Vankine + +
+
+ +
+
+
+
+
+
+
+

Need Any Help? Or Looking For an Agent

+
+
+
+
+ +
+
+ +
+
+ +
+
+ + + + +
+ +
Examples:
+
+

+ + <i class="flaticon-next"></i> +

+
+
+

+ + <i class="flaticon-pinterest"></i> +

+
+
+

+ + <i class="flaticon-abstract-shape"></i> +

+
+
+

+ + <i class="flaticon-facebook-app-symbol"></i> +

+
+
+

+ + <i class="flaticon-instagram"></i> +

+
+
+

+ + <i class="flaticon-linkedin"></i> +

+
+
+

+ + <i class="flaticon-health-insurance"></i> +

+
+
+

+ + <i class="flaticon-online-analytical"></i> +

+
+
+

+ + <i class="flaticon-growth"></i> +

+
+
+

+ + <i class="flaticon-money-bag"></i> +

+
+
+

+ + <i class="flaticon-agile"></i> +

+
+
+

+ + <i class="flaticon-salary"></i> +

+
+
+

+ + <i class="flaticon-business-trip"></i> +

+
+
+

+ + <i class="flaticon-health-insurance-1"></i> +

+
+
+

+ + <i class="flaticon-satisfaction"></i> +

+
+
+

+ + <i class="flaticon-process"></i> +

+
+
+

+ + <i class="flaticon-trophy"></i> +

+
+
+

+ + <i class="flaticon-car-insurance"></i> +

+
+
+

+ + <i class="flaticon-health-insurance-2"></i> +

+
+
+

+ + <i class="flaticon-reviews"></i> +

+
+
+

+ + <i class="flaticon-cyber-security"></i> +

+
+
+

+ + <i class="flaticon-dashboard"></i> +

+
+
+

+ + <i class="flaticon-business-people"></i> +

+
+
+

+ + <i class="flaticon-healthcare"></i> +

+
+
+

+ + <i class="flaticon-presenter"></i> +

+
+
+

+ + <i class="flaticon-travel-insurance"></i> +

+
+
+

+ + <i class="flaticon-insurance"></i> +

+
+
+

+ + <i class="flaticon-plane"></i> +

+
+
+

+ + <i class="flaticon-check-mark"></i> +

+
+
+

+ + <i class="flaticon-quotation"></i> +

+
+
+

+ + <i class="flaticon-telephone"></i> +

+
+
+

+ + <i class="flaticon-iteration"></i> +

+
+
+

+ + <i class="flaticon-draw-check-mark"></i> +

+
+
+

+ + <i class="flaticon-car-insurance-1"></i> +

+
+
+

+ + <i class="flaticon-life-insurance"></i> +

+
+
+

+ + <i class="flaticon-house"></i> +

+
+
+

+ + <i class="flaticon-management"></i> +

+
+
+

+ + <i class="flaticon-insurance-2"></i> +

+
+
+

+ + <i class="flaticon-marriage"></i> +

+
+
+

+ + <i class="flaticon-enjoy"></i> +

+
+
+

+ + <i class="flaticon-right-quote"></i> +

+
+
+

+ + <i class="flaticon-interview"></i> +

+
+
+

+ + <i class="flaticon-car-insurance-2"></i> +

+
+
+

+ + <i class="flaticon-growth-1"></i> +

+
+
+

+ + <i class="flaticon-user"></i> +

+
+
+

+ + <i class="flaticon-stethoscope"></i> +

+
+
+

+ + <i class="flaticon-sea-waves"></i> +

+
+
+

+ + <i class="flaticon-money"></i> +

+
+
+

+ + <i class="flaticon-black-back-closed-envelope-shape"></i> +

+
+
+

+ + <i class="flaticon-piggy-bank"></i> +

+
+
+

+ + <i class="flaticon-home-insurance"></i> +

+
+
+

+ + <i class="flaticon-airplane-around-earth"></i> +

+
+
+

+ + <i class="flaticon-health-insurance-3"></i> +

+
+
+

+ + <i class="flaticon-tick"></i> +

+
+
+

+ + <i class="flaticon-health-care"></i> +

+
+
+

+ + <i class="flaticon-pin"></i> +

+
+
+

+ + <i class="flaticon-pie-chart"></i> +

+
+
+ + + + + + + + \ No newline at end of file diff --git a/public/assets/fonts/flaticon/flaticon_vankine.svg b/public/assets/fonts/flaticon/flaticon_vankine.svg new file mode 100644 index 0000000..9359b3f --- /dev/null +++ b/public/assets/fonts/flaticon/flaticon_vankine.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/fonts/flaticon/flaticon_vankine.ttf b/public/assets/fonts/flaticon/flaticon_vankine.ttf new file mode 100644 index 0000000..a390da3 Binary files /dev/null and b/public/assets/fonts/flaticon/flaticon_vankine.ttf differ diff --git a/public/assets/fonts/flaticon/flaticon_vankine.woff b/public/assets/fonts/flaticon/flaticon_vankine.woff new file mode 100644 index 0000000..8f6e7a5 Binary files /dev/null and b/public/assets/fonts/flaticon/flaticon_vankine.woff differ diff --git a/public/assets/fonts/flaticon/flaticon_vankine.woff2 b/public/assets/fonts/flaticon/flaticon_vankine.woff2 new file mode 100644 index 0000000..dba73c4 Binary files /dev/null and b/public/assets/fonts/flaticon/flaticon_vankine.woff2 differ diff --git a/public/assets/fonts/uicons/uicons-regular-rounded.eot b/public/assets/fonts/uicons/uicons-regular-rounded.eot new file mode 100644 index 0000000..87390fc Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-rounded.eot differ diff --git a/public/assets/fonts/uicons/uicons-regular-rounded.woff b/public/assets/fonts/uicons/uicons-regular-rounded.woff new file mode 100644 index 0000000..5532df9 Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-rounded.woff differ diff --git a/public/assets/fonts/uicons/uicons-regular-rounded.woff2 b/public/assets/fonts/uicons/uicons-regular-rounded.woff2 new file mode 100644 index 0000000..52f5968 Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-rounded.woff2 differ diff --git a/public/assets/fonts/uicons/uicons-regular-straight.eot b/public/assets/fonts/uicons/uicons-regular-straight.eot new file mode 100644 index 0000000..1624a1e Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-straight.eot differ diff --git a/public/assets/fonts/uicons/uicons-regular-straight.woff b/public/assets/fonts/uicons/uicons-regular-straight.woff new file mode 100644 index 0000000..39d0748 Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-straight.woff differ diff --git a/public/assets/fonts/uicons/uicons-regular-straight.woff2 b/public/assets/fonts/uicons/uicons-regular-straight.woff2 new file mode 100644 index 0000000..04f7b04 Binary files /dev/null and b/public/assets/fonts/uicons/uicons-regular-straight.woff2 differ diff --git a/public/assets/fonts/webfonts/fa-brands-400.eot b/public/assets/fonts/webfonts/fa-brands-400.eot new file mode 100644 index 0000000..cdef69f Binary files /dev/null and b/public/assets/fonts/webfonts/fa-brands-400.eot differ diff --git a/public/assets/fonts/webfonts/fa-brands-400.svg b/public/assets/fonts/webfonts/fa-brands-400.svg new file mode 100644 index 0000000..54da424 --- /dev/null +++ b/public/assets/fonts/webfonts/fa-brands-400.svg @@ -0,0 +1,3717 @@ + + + + +Created by FontForge 20200314 at Wed Jan 13 11:57:55 2021 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/fonts/webfonts/fa-brands-400.ttf b/public/assets/fonts/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000..8ecb67b Binary files /dev/null and b/public/assets/fonts/webfonts/fa-brands-400.ttf differ diff --git a/public/assets/fonts/webfonts/fa-brands-400.woff b/public/assets/fonts/webfonts/fa-brands-400.woff new file mode 100644 index 0000000..9bd812a Binary files /dev/null and b/public/assets/fonts/webfonts/fa-brands-400.woff differ diff --git a/public/assets/fonts/webfonts/fa-brands-400.woff2 b/public/assets/fonts/webfonts/fa-brands-400.woff2 new file mode 100644 index 0000000..2acd92d Binary files /dev/null and b/public/assets/fonts/webfonts/fa-brands-400.woff2 differ diff --git a/public/assets/fonts/webfonts/fa-regular-400.eot b/public/assets/fonts/webfonts/fa-regular-400.eot new file mode 100644 index 0000000..21808cc Binary files /dev/null and b/public/assets/fonts/webfonts/fa-regular-400.eot differ diff --git a/public/assets/fonts/webfonts/fa-regular-400.svg b/public/assets/fonts/webfonts/fa-regular-400.svg new file mode 100644 index 0000000..60414e1 --- /dev/null +++ b/public/assets/fonts/webfonts/fa-regular-400.svg @@ -0,0 +1,801 @@ + + + + +Created by FontForge 20200314 at Wed Jan 13 11:57:54 2021 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/fonts/webfonts/fa-regular-400.ttf b/public/assets/fonts/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000..2775fa1 Binary files /dev/null and b/public/assets/fonts/webfonts/fa-regular-400.ttf differ diff --git a/public/assets/fonts/webfonts/fa-regular-400.woff b/public/assets/fonts/webfonts/fa-regular-400.woff new file mode 100644 index 0000000..e4acf91 Binary files /dev/null and b/public/assets/fonts/webfonts/fa-regular-400.woff differ diff --git a/public/assets/fonts/webfonts/fa-regular-400.woff2 b/public/assets/fonts/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000..708621f Binary files /dev/null and b/public/assets/fonts/webfonts/fa-regular-400.woff2 differ diff --git a/public/assets/fonts/webfonts/fa-solid-900.eot b/public/assets/fonts/webfonts/fa-solid-900.eot new file mode 100644 index 0000000..ccebb26 Binary files /dev/null and b/public/assets/fonts/webfonts/fa-solid-900.eot differ diff --git a/public/assets/fonts/webfonts/fa-solid-900.svg b/public/assets/fonts/webfonts/fa-solid-900.svg new file mode 100644 index 0000000..23a6b9a --- /dev/null +++ b/public/assets/fonts/webfonts/fa-solid-900.svg @@ -0,0 +1,5028 @@ + + + + +Created by FontForge 20200314 at Wed Jan 13 11:57:55 2021 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/fonts/webfonts/fa-solid-900.ttf b/public/assets/fonts/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000..bc64092 Binary files /dev/null and b/public/assets/fonts/webfonts/fa-solid-900.ttf differ diff --git a/public/assets/fonts/webfonts/fa-solid-900.woff b/public/assets/fonts/webfonts/fa-solid-900.woff new file mode 100644 index 0000000..7a14a11 Binary files /dev/null and b/public/assets/fonts/webfonts/fa-solid-900.woff differ diff --git a/public/assets/fonts/webfonts/fa-solid-900.woff2 b/public/assets/fonts/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000..9a4633d Binary files /dev/null and b/public/assets/fonts/webfonts/fa-solid-900.woff2 differ diff --git a/public/assets/images/Graphics.png b/public/assets/images/Graphics.png new file mode 100644 index 0000000..a54624a Binary files /dev/null and b/public/assets/images/Graphics.png differ diff --git a/public/assets/images/Logo-bg.png b/public/assets/images/Logo-bg.png new file mode 100644 index 0000000..f29a835 Binary files /dev/null and b/public/assets/images/Logo-bg.png differ diff --git a/public/assets/images/Logo-green.png b/public/assets/images/Logo-green.png new file mode 100644 index 0000000..7c3cc7a Binary files /dev/null and b/public/assets/images/Logo-green.png differ diff --git a/public/assets/images/Map.png b/public/assets/images/Map.png new file mode 100644 index 0000000..089b4e1 Binary files /dev/null and b/public/assets/images/Map.png differ diff --git a/public/assets/images/about-dot-bg.png b/public/assets/images/about-dot-bg.png new file mode 100644 index 0000000..52ade98 Binary files /dev/null and b/public/assets/images/about-dot-bg.png differ diff --git a/public/assets/images/about/abh4-2-min.jpg b/public/assets/images/about/abh4-2-min.jpg new file mode 100644 index 0000000..62b94c0 Binary files /dev/null and b/public/assets/images/about/abh4-2-min.jpg differ diff --git a/public/assets/images/about/about-1-min.png b/public/assets/images/about/about-1-min.png new file mode 100644 index 0000000..73535a8 Binary files /dev/null and b/public/assets/images/about/about-1-min.png differ diff --git a/public/assets/images/about/about-1.png b/public/assets/images/about/about-1.png new file mode 100644 index 0000000..8475521 Binary files /dev/null and b/public/assets/images/about/about-1.png differ diff --git a/public/assets/images/about/about-2-1.jpg b/public/assets/images/about/about-2-1.jpg new file mode 100644 index 0000000..22044dd Binary files /dev/null and b/public/assets/images/about/about-2-1.jpg differ diff --git a/public/assets/images/about/about-2-11.png b/public/assets/images/about/about-2-11.png new file mode 100644 index 0000000..9f66b86 Binary files /dev/null and b/public/assets/images/about/about-2-11.png differ diff --git a/public/assets/images/about/about-2-2.jpg b/public/assets/images/about/about-2-2.jpg new file mode 100644 index 0000000..1300947 Binary files /dev/null and b/public/assets/images/about/about-2-2.jpg differ diff --git a/public/assets/images/about/about-2-3.jpg b/public/assets/images/about/about-2-3.jpg new file mode 100644 index 0000000..902c200 Binary files /dev/null and b/public/assets/images/about/about-2-3.jpg differ diff --git a/public/assets/images/about/about-4-1.png b/public/assets/images/about/about-4-1.png new file mode 100644 index 0000000..b46dd66 Binary files /dev/null and b/public/assets/images/about/about-4-1.png differ diff --git a/public/assets/images/about/about-h-6-min.png b/public/assets/images/about/about-h-6-min.png new file mode 100644 index 0000000..76529c6 Binary files /dev/null and b/public/assets/images/about/about-h-6-min.png differ diff --git a/public/assets/images/about/an-1-min.png b/public/assets/images/about/an-1-min.png new file mode 100644 index 0000000..7a0b519 Binary files /dev/null and b/public/assets/images/about/an-1-min.png differ diff --git a/public/assets/images/about/content-image-1.png b/public/assets/images/about/content-image-1.png new file mode 100644 index 0000000..72d9312 Binary files /dev/null and b/public/assets/images/about/content-image-1.png differ diff --git a/public/assets/images/about/content-image-2.png b/public/assets/images/about/content-image-2.png new file mode 100644 index 0000000..ce6d605 Binary files /dev/null and b/public/assets/images/about/content-image-2.png differ diff --git a/public/assets/images/about/man-1.png b/public/assets/images/about/man-1.png new file mode 100644 index 0000000..9c6e092 Binary files /dev/null and b/public/assets/images/about/man-1.png differ diff --git a/public/assets/images/about/man-2.png b/public/assets/images/about/man-2.png new file mode 100644 index 0000000..f2c7ee6 Binary files /dev/null and b/public/assets/images/about/man-2.png differ diff --git a/public/assets/images/an-1-min.png b/public/assets/images/an-1-min.png new file mode 100644 index 0000000..7a0b519 Binary files /dev/null and b/public/assets/images/an-1-min.png differ diff --git a/public/assets/images/arrow.png b/public/assets/images/arrow.png new file mode 100644 index 0000000..76e42fd Binary files /dev/null and b/public/assets/images/arrow.png differ diff --git a/public/assets/images/bg-1.png b/public/assets/images/bg-1.png new file mode 100644 index 0000000..10b5a33 Binary files /dev/null and b/public/assets/images/bg-1.png differ diff --git a/public/assets/images/bg-2-2.png b/public/assets/images/bg-2-2.png new file mode 100644 index 0000000..d941c27 Binary files /dev/null and b/public/assets/images/bg-2-2.png differ diff --git a/public/assets/images/bg-2.png b/public/assets/images/bg-2.png new file mode 100644 index 0000000..aaadda3 Binary files /dev/null and b/public/assets/images/bg-2.png differ diff --git a/public/assets/images/bg-3.jpg b/public/assets/images/bg-3.jpg new file mode 100644 index 0000000..1713009 Binary files /dev/null and b/public/assets/images/bg-3.jpg differ diff --git a/public/assets/images/bg.png b/public/assets/images/bg.png new file mode 100644 index 0000000..7412cae Binary files /dev/null and b/public/assets/images/bg.png differ diff --git a/public/assets/images/blog/blog-1.png b/public/assets/images/blog/blog-1.png new file mode 100644 index 0000000..934d3fd Binary files /dev/null and b/public/assets/images/blog/blog-1.png differ diff --git a/public/assets/images/blog/blog-2.png b/public/assets/images/blog/blog-2.png new file mode 100644 index 0000000..31a7b9f Binary files /dev/null and b/public/assets/images/blog/blog-2.png differ diff --git a/public/assets/images/blog/blog-3.png b/public/assets/images/blog/blog-3.png new file mode 100644 index 0000000..4f30d27 Binary files /dev/null and b/public/assets/images/blog/blog-3.png differ diff --git a/public/assets/images/blog/blog-4.png b/public/assets/images/blog/blog-4.png new file mode 100644 index 0000000..7f55181 Binary files /dev/null and b/public/assets/images/blog/blog-4.png differ diff --git a/public/assets/images/blog/blog-5.png b/public/assets/images/blog/blog-5.png new file mode 100644 index 0000000..a950baa Binary files /dev/null and b/public/assets/images/blog/blog-5.png differ diff --git a/public/assets/images/blog/blog-6.png b/public/assets/images/blog/blog-6.png new file mode 100644 index 0000000..676500b Binary files /dev/null and b/public/assets/images/blog/blog-6.png differ diff --git a/public/assets/images/blog/blog-7-min.png b/public/assets/images/blog/blog-7-min.png new file mode 100644 index 0000000..f7d7b14 Binary files /dev/null and b/public/assets/images/blog/blog-7-min.png differ diff --git a/public/assets/images/blog/blog-7.png b/public/assets/images/blog/blog-7.png new file mode 100644 index 0000000..f7d7b14 Binary files /dev/null and b/public/assets/images/blog/blog-7.png differ diff --git a/public/assets/images/blog/blog-8-min.png b/public/assets/images/blog/blog-8-min.png new file mode 100644 index 0000000..ab25a31 Binary files /dev/null and b/public/assets/images/blog/blog-8-min.png differ diff --git a/public/assets/images/blog/blog-8.png b/public/assets/images/blog/blog-8.png new file mode 100644 index 0000000..ab25a31 Binary files /dev/null and b/public/assets/images/blog/blog-8.png differ diff --git a/public/assets/images/blog/blog-9-min.png b/public/assets/images/blog/blog-9-min.png new file mode 100644 index 0000000..e9e6e2a Binary files /dev/null and b/public/assets/images/blog/blog-9-min.png differ diff --git a/public/assets/images/blog/widget-about-bg.jpg b/public/assets/images/blog/widget-about-bg.jpg new file mode 100644 index 0000000..f1d93d9 Binary files /dev/null and b/public/assets/images/blog/widget-about-bg.jpg differ diff --git a/public/assets/images/blog/widget-about-man.png b/public/assets/images/blog/widget-about-man.png new file mode 100644 index 0000000..6c173c0 Binary files /dev/null and b/public/assets/images/blog/widget-about-man.png differ diff --git a/public/assets/images/call-1-min.png b/public/assets/images/call-1-min.png new file mode 100644 index 0000000..f336181 Binary files /dev/null and b/public/assets/images/call-1-min.png differ diff --git a/public/assets/images/call-2-min.png b/public/assets/images/call-2-min.png new file mode 100644 index 0000000..63723b7 Binary files /dev/null and b/public/assets/images/call-2-min.png differ diff --git a/public/assets/images/call-bg-h4-min.jpg b/public/assets/images/call-bg-h4-min.jpg new file mode 100644 index 0000000..26e1ea4 Binary files /dev/null and b/public/assets/images/call-bg-h4-min.jpg differ diff --git a/public/assets/images/clain-1.png b/public/assets/images/clain-1.png new file mode 100644 index 0000000..764f6d1 Binary files /dev/null and b/public/assets/images/clain-1.png differ diff --git a/public/assets/images/client-1.png b/public/assets/images/client-1.png new file mode 100644 index 0000000..9ad5344 Binary files /dev/null and b/public/assets/images/client-1.png differ diff --git a/public/assets/images/client-2.png b/public/assets/images/client-2.png new file mode 100644 index 0000000..c4571ea Binary files /dev/null and b/public/assets/images/client-2.png differ diff --git a/public/assets/images/client-3.png b/public/assets/images/client-3.png new file mode 100644 index 0000000..6893020 Binary files /dev/null and b/public/assets/images/client-3.png differ diff --git a/public/assets/images/client-4.png b/public/assets/images/client-4.png new file mode 100644 index 0000000..7405064 Binary files /dev/null and b/public/assets/images/client-4.png differ diff --git a/public/assets/images/client-5.png b/public/assets/images/client-5.png new file mode 100644 index 0000000..3a6c136 Binary files /dev/null and b/public/assets/images/client-5.png differ diff --git a/public/assets/images/client-6.png b/public/assets/images/client-6.png new file mode 100644 index 0000000..049e62a Binary files /dev/null and b/public/assets/images/client-6.png differ diff --git a/public/assets/images/cont-1.png b/public/assets/images/cont-1.png new file mode 100644 index 0000000..5e1df27 Binary files /dev/null and b/public/assets/images/cont-1.png differ diff --git a/public/assets/images/cont-2.png b/public/assets/images/cont-2.png new file mode 100644 index 0000000..5905ca3 Binary files /dev/null and b/public/assets/images/cont-2.png differ diff --git a/public/assets/images/cont-3.png b/public/assets/images/cont-3.png new file mode 100644 index 0000000..a87c9e9 Binary files /dev/null and b/public/assets/images/cont-3.png differ diff --git a/public/assets/images/demo-1-1-min-scaled.jpg b/public/assets/images/demo-1-1-min-scaled.jpg new file mode 100644 index 0000000..5c2df3c Binary files /dev/null and b/public/assets/images/demo-1-1-min-scaled.jpg differ diff --git a/public/assets/images/demo-1-2-min-scaled.jpg b/public/assets/images/demo-1-2-min-scaled.jpg new file mode 100644 index 0000000..33ddac9 Binary files /dev/null and b/public/assets/images/demo-1-2-min-scaled.jpg differ diff --git a/public/assets/images/demo-1-3-min-scaled.jpg b/public/assets/images/demo-1-3-min-scaled.jpg new file mode 100644 index 0000000..31ecc78 Binary files /dev/null and b/public/assets/images/demo-1-3-min-scaled.jpg differ diff --git a/public/assets/images/demo-1-4-min-scaled.jpg b/public/assets/images/demo-1-4-min-scaled.jpg new file mode 100644 index 0000000..7c4efbb Binary files /dev/null and b/public/assets/images/demo-1-4-min-scaled.jpg differ diff --git a/public/assets/images/demo-1-5-min-scaled.jpg b/public/assets/images/demo-1-5-min-scaled.jpg new file mode 100644 index 0000000..7d7f96d Binary files /dev/null and b/public/assets/images/demo-1-5-min-scaled.jpg differ diff --git a/public/assets/images/demo-1-6-min-scaled.jpg b/public/assets/images/demo-1-6-min-scaled.jpg new file mode 100644 index 0000000..5eab559 Binary files /dev/null and b/public/assets/images/demo-1-6-min-scaled.jpg differ diff --git a/public/assets/images/dot-2.png b/public/assets/images/dot-2.png new file mode 100644 index 0000000..3b92a37 Binary files /dev/null and b/public/assets/images/dot-2.png differ diff --git a/public/assets/images/dot-round-1.png b/public/assets/images/dot-round-1.png new file mode 100644 index 0000000..bef62d3 Binary files /dev/null and b/public/assets/images/dot-round-1.png differ diff --git a/public/assets/images/dot-round-2.png b/public/assets/images/dot-round-2.png new file mode 100644 index 0000000..beed47a Binary files /dev/null and b/public/assets/images/dot-round-2.png differ diff --git a/public/assets/images/favicon.ico b/public/assets/images/favicon.ico new file mode 100644 index 0000000..87eddb1 Binary files /dev/null and b/public/assets/images/favicon.ico differ diff --git a/public/assets/images/footer-logo-blue.png b/public/assets/images/footer-logo-blue.png new file mode 100644 index 0000000..522c3d5 Binary files /dev/null and b/public/assets/images/footer-logo-blue.png differ diff --git a/public/assets/images/footer-logo-green.png b/public/assets/images/footer-logo-green.png new file mode 100644 index 0000000..5b01423 Binary files /dev/null and b/public/assets/images/footer-logo-green.png differ diff --git a/public/assets/images/footer-logo-three.png b/public/assets/images/footer-logo-three.png new file mode 100644 index 0000000..294d708 Binary files /dev/null and b/public/assets/images/footer-logo-three.png differ diff --git a/public/assets/images/footer/footer-3-bg.jpg b/public/assets/images/footer/footer-3-bg.jpg new file mode 100644 index 0000000..8f6b20e Binary files /dev/null and b/public/assets/images/footer/footer-3-bg.jpg differ diff --git a/public/assets/images/form-1-min.png b/public/assets/images/form-1-min.png new file mode 100644 index 0000000..9f0aa46 Binary files /dev/null and b/public/assets/images/form-1-min.png differ diff --git a/public/assets/images/form-2-min.png b/public/assets/images/form-2-min.png new file mode 100644 index 0000000..de1224b Binary files /dev/null and b/public/assets/images/form-2-min.png differ diff --git a/public/assets/images/form-image-1.jpg b/public/assets/images/form-image-1.jpg new file mode 100644 index 0000000..449512c Binary files /dev/null and b/public/assets/images/form-image-1.jpg differ diff --git a/public/assets/images/form-shape-1.png b/public/assets/images/form-shape-1.png new file mode 100644 index 0000000..6fe8eac Binary files /dev/null and b/public/assets/images/form-shape-1.png differ diff --git a/public/assets/images/frm-1-min.png b/public/assets/images/frm-1-min.png new file mode 100644 index 0000000..135d5b0 Binary files /dev/null and b/public/assets/images/frm-1-min.png differ diff --git a/public/assets/images/gavatar.png b/public/assets/images/gavatar.png new file mode 100644 index 0000000..6ec476b Binary files /dev/null and b/public/assets/images/gavatar.png differ diff --git a/public/assets/images/h-6-shap1-2.png b/public/assets/images/h-6-shap1-2.png new file mode 100644 index 0000000..b4b9cbe Binary files /dev/null and b/public/assets/images/h-6-shap1-2.png differ diff --git a/public/assets/images/h3-ch-1-min.png b/public/assets/images/h3-ch-1-min.png new file mode 100644 index 0000000..d16b330 Binary files /dev/null and b/public/assets/images/h3-ch-1-min.png differ diff --git a/public/assets/images/header-5-bg.png b/public/assets/images/header-5-bg.png new file mode 100644 index 0000000..7412cae Binary files /dev/null and b/public/assets/images/header-5-bg.png differ diff --git a/public/assets/images/header-bg.png b/public/assets/images/header-bg.png new file mode 100644 index 0000000..ca6fcf4 Binary files /dev/null and b/public/assets/images/header-bg.png differ diff --git a/public/assets/images/home-6-icon-1.png b/public/assets/images/home-6-icon-1.png new file mode 100644 index 0000000..b966b98 Binary files /dev/null and b/public/assets/images/home-6-icon-1.png differ diff --git a/public/assets/images/home-6-icon-2.png b/public/assets/images/home-6-icon-2.png new file mode 100644 index 0000000..852c898 Binary files /dev/null and b/public/assets/images/home-6-icon-2.png differ diff --git a/public/assets/images/home-6-icon-3.png b/public/assets/images/home-6-icon-3.png new file mode 100644 index 0000000..e4fb2f2 Binary files /dev/null and b/public/assets/images/home-6-icon-3.png differ diff --git a/public/assets/images/home-6-icon-4.png b/public/assets/images/home-6-icon-4.png new file mode 100644 index 0000000..653b825 Binary files /dev/null and b/public/assets/images/home-6-icon-4.png differ diff --git a/public/assets/images/home-tese-min.jpg b/public/assets/images/home-tese-min.jpg new file mode 100644 index 0000000..24a7108 Binary files /dev/null and b/public/assets/images/home-tese-min.jpg differ diff --git a/public/assets/images/icon-image-1.png b/public/assets/images/icon-image-1.png new file mode 100644 index 0000000..c867584 Binary files /dev/null and b/public/assets/images/icon-image-1.png differ diff --git a/public/assets/images/icon-image-2.png b/public/assets/images/icon-image-2.png new file mode 100644 index 0000000..a9aeaaf Binary files /dev/null and b/public/assets/images/icon-image-2.png differ diff --git a/public/assets/images/img-icon-1.png b/public/assets/images/img-icon-1.png new file mode 100644 index 0000000..71fb325 Binary files /dev/null and b/public/assets/images/img-icon-1.png differ diff --git a/public/assets/images/img-icon-2.png b/public/assets/images/img-icon-2.png new file mode 100644 index 0000000..c303362 Binary files /dev/null and b/public/assets/images/img-icon-2.png differ diff --git a/public/assets/images/img-icon-3.png b/public/assets/images/img-icon-3.png new file mode 100644 index 0000000..77dc4bd Binary files /dev/null and b/public/assets/images/img-icon-3.png differ diff --git a/public/assets/images/img-icon-4.png b/public/assets/images/img-icon-4.png new file mode 100644 index 0000000..f541d10 Binary files /dev/null and b/public/assets/images/img-icon-4.png differ diff --git a/public/assets/images/line-2.png b/public/assets/images/line-2.png new file mode 100644 index 0000000..c81c3e0 Binary files /dev/null and b/public/assets/images/line-2.png differ diff --git a/public/assets/images/line-3.png b/public/assets/images/line-3.png new file mode 100644 index 0000000..34daaf3 Binary files /dev/null and b/public/assets/images/line-3.png differ diff --git a/public/assets/images/line-4.png b/public/assets/images/line-4.png new file mode 100644 index 0000000..535662f Binary files /dev/null and b/public/assets/images/line-4.png differ diff --git a/public/assets/images/line-st-2.png b/public/assets/images/line-st-2.png new file mode 100644 index 0000000..7b497ba Binary files /dev/null and b/public/assets/images/line-st-2.png differ diff --git a/public/assets/images/line.png b/public/assets/images/line.png new file mode 100644 index 0000000..bd1a198 Binary files /dev/null and b/public/assets/images/line.png differ diff --git a/public/assets/images/logo-panel.svg b/public/assets/images/logo-panel.svg new file mode 100644 index 0000000..794c8bb --- /dev/null +++ b/public/assets/images/logo-panel.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/images/logo-rotate.png b/public/assets/images/logo-rotate.png new file mode 100644 index 0000000..0f0a6cf Binary files /dev/null and b/public/assets/images/logo-rotate.png differ diff --git a/public/assets/images/logo-white.svg b/public/assets/images/logo-white.svg new file mode 100644 index 0000000..d6e2224 --- /dev/null +++ b/public/assets/images/logo-white.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/images/map-frame-2.png b/public/assets/images/map-frame-2.png new file mode 100644 index 0000000..46371c9 Binary files /dev/null and b/public/assets/images/map-frame-2.png differ diff --git a/public/assets/images/notification-1.png b/public/assets/images/notification-1.png new file mode 100644 index 0000000..5dc38f5 Binary files /dev/null and b/public/assets/images/notification-1.png differ diff --git a/public/assets/images/page-404.png b/public/assets/images/page-404.png new file mode 100644 index 0000000..e4558d8 Binary files /dev/null and b/public/assets/images/page-404.png differ diff --git a/public/assets/images/page-image-1-min.jpg b/public/assets/images/page-image-1-min.jpg new file mode 100644 index 0000000..8dd8526 Binary files /dev/null and b/public/assets/images/page-image-1-min.jpg differ diff --git a/public/assets/images/pattern-3.png b/public/assets/images/pattern-3.png new file mode 100644 index 0000000..ae52449 Binary files /dev/null and b/public/assets/images/pattern-3.png differ diff --git a/public/assets/images/pin.png b/public/assets/images/pin.png new file mode 100644 index 0000000..434e66b Binary files /dev/null and b/public/assets/images/pin.png differ diff --git a/public/assets/images/portfolio/pro-details-min.png b/public/assets/images/portfolio/pro-details-min.png new file mode 100644 index 0000000..1a463e6 Binary files /dev/null and b/public/assets/images/portfolio/pro-details-min.png differ diff --git a/public/assets/images/portfolio/project-1-min.png b/public/assets/images/portfolio/project-1-min.png new file mode 100644 index 0000000..6762349 Binary files /dev/null and b/public/assets/images/portfolio/project-1-min.png differ diff --git a/public/assets/images/portfolio/project-2-min.png b/public/assets/images/portfolio/project-2-min.png new file mode 100644 index 0000000..b4f5ee6 Binary files /dev/null and b/public/assets/images/portfolio/project-2-min.png differ diff --git a/public/assets/images/portfolio/project-3-min.png b/public/assets/images/portfolio/project-3-min.png new file mode 100644 index 0000000..d78a9ee Binary files /dev/null and b/public/assets/images/portfolio/project-3-min.png differ diff --git a/public/assets/images/portfolio/project-4-min.png b/public/assets/images/portfolio/project-4-min.png new file mode 100644 index 0000000..b724292 Binary files /dev/null and b/public/assets/images/portfolio/project-4-min.png differ diff --git a/public/assets/images/portfolio/project-5-min.png b/public/assets/images/portfolio/project-5-min.png new file mode 100644 index 0000000..7c9bfd5 Binary files /dev/null and b/public/assets/images/portfolio/project-5-min.png differ diff --git a/public/assets/images/portfolio/project-6-min.png b/public/assets/images/portfolio/project-6-min.png new file mode 100644 index 0000000..00646a4 Binary files /dev/null and b/public/assets/images/portfolio/project-6-min.png differ diff --git a/public/assets/images/portfolio/project-7-min.png b/public/assets/images/portfolio/project-7-min.png new file mode 100644 index 0000000..fa99107 Binary files /dev/null and b/public/assets/images/portfolio/project-7-min.png differ diff --git a/public/assets/images/portfolio/project-8-min.png b/public/assets/images/portfolio/project-8-min.png new file mode 100644 index 0000000..05f0bc0 Binary files /dev/null and b/public/assets/images/portfolio/project-8-min.png differ diff --git a/public/assets/images/portfolio/project-9-min.png b/public/assets/images/portfolio/project-9-min.png new file mode 100644 index 0000000..8386d4c Binary files /dev/null and b/public/assets/images/portfolio/project-9-min.png differ diff --git a/public/assets/images/preloader.gif b/public/assets/images/preloader.gif new file mode 100644 index 0000000..75497fa Binary files /dev/null and b/public/assets/images/preloader.gif differ diff --git a/public/assets/images/process/pro-h4-1-min.jpg b/public/assets/images/process/pro-h4-1-min.jpg new file mode 100644 index 0000000..17d03db Binary files /dev/null and b/public/assets/images/process/pro-h4-1-min.jpg differ diff --git a/public/assets/images/process/pro-h4-2-min.jpg b/public/assets/images/process/pro-h4-2-min.jpg new file mode 100644 index 0000000..203f50f Binary files /dev/null and b/public/assets/images/process/pro-h4-2-min.jpg differ diff --git a/public/assets/images/process/pro-h4-3-min.jpg b/public/assets/images/process/pro-h4-3-min.jpg new file mode 100644 index 0000000..6f9127d Binary files /dev/null and b/public/assets/images/process/pro-h4-3-min.jpg differ diff --git a/public/assets/images/process/pro-h4-4-min.jpg b/public/assets/images/process/pro-h4-4-min.jpg new file mode 100644 index 0000000..72d5aff Binary files /dev/null and b/public/assets/images/process/pro-h4-4-min.jpg differ diff --git a/public/assets/images/process/process-1-1.png b/public/assets/images/process/process-1-1.png new file mode 100644 index 0000000..e92d5bc Binary files /dev/null and b/public/assets/images/process/process-1-1.png differ diff --git a/public/assets/images/process/process-1-2.png b/public/assets/images/process/process-1-2.png new file mode 100644 index 0000000..d984e5a Binary files /dev/null and b/public/assets/images/process/process-1-2.png differ diff --git a/public/assets/images/process/process-1-3.png b/public/assets/images/process/process-1-3.png new file mode 100644 index 0000000..fb6b292 Binary files /dev/null and b/public/assets/images/process/process-1-3.png differ diff --git a/public/assets/images/rotate-logo-green-1.png b/public/assets/images/rotate-logo-green-1.png new file mode 100644 index 0000000..c0f4fa2 Binary files /dev/null and b/public/assets/images/rotate-logo-green-1.png differ diff --git a/public/assets/images/ser-bg-bg-min.jpg b/public/assets/images/ser-bg-bg-min.jpg new file mode 100644 index 0000000..8bcfa46 Binary files /dev/null and b/public/assets/images/ser-bg-bg-min.jpg differ diff --git a/public/assets/images/service-brlow-min.jpg b/public/assets/images/service-brlow-min.jpg new file mode 100644 index 0000000..76d5dee Binary files /dev/null and b/public/assets/images/service-brlow-min.jpg differ diff --git a/public/assets/images/service-dot-bg.png b/public/assets/images/service-dot-bg.png new file mode 100644 index 0000000..ebe94e2 Binary files /dev/null and b/public/assets/images/service-dot-bg.png differ diff --git a/public/assets/images/service/other-ser-1.jpg b/public/assets/images/service/other-ser-1.jpg new file mode 100644 index 0000000..c284cd9 Binary files /dev/null and b/public/assets/images/service/other-ser-1.jpg differ diff --git a/public/assets/images/service/other-ser-2.jpg b/public/assets/images/service/other-ser-2.jpg new file mode 100644 index 0000000..326ec44 Binary files /dev/null and b/public/assets/images/service/other-ser-2.jpg differ diff --git a/public/assets/images/service/other-ser-3.jpg b/public/assets/images/service/other-ser-3.jpg new file mode 100644 index 0000000..9d0c076 Binary files /dev/null and b/public/assets/images/service/other-ser-3.jpg differ diff --git a/public/assets/images/service/ser-bg-h4-min.jpg b/public/assets/images/service/ser-bg-h4-min.jpg new file mode 100644 index 0000000..ee045fb Binary files /dev/null and b/public/assets/images/service/ser-bg-h4-min.jpg differ diff --git a/public/assets/images/service/ser-v1-1-min.png b/public/assets/images/service/ser-v1-1-min.png new file mode 100644 index 0000000..bfed12a Binary files /dev/null and b/public/assets/images/service/ser-v1-1-min.png differ diff --git a/public/assets/images/service/ser-v1-2-min.png b/public/assets/images/service/ser-v1-2-min.png new file mode 100644 index 0000000..387ee5c Binary files /dev/null and b/public/assets/images/service/ser-v1-2-min.png differ diff --git a/public/assets/images/service/ser-v1-3-min.png b/public/assets/images/service/ser-v1-3-min.png new file mode 100644 index 0000000..a017bc9 Binary files /dev/null and b/public/assets/images/service/ser-v1-3-min.png differ diff --git a/public/assets/images/service/service-1-min-1.jpg b/public/assets/images/service/service-1-min-1.jpg new file mode 100644 index 0000000..123cd4d Binary files /dev/null and b/public/assets/images/service/service-1-min-1.jpg differ diff --git a/public/assets/images/service/service-2-min-1.jpg b/public/assets/images/service/service-2-min-1.jpg new file mode 100644 index 0000000..9b891c7 Binary files /dev/null and b/public/assets/images/service/service-2-min-1.jpg differ diff --git a/public/assets/images/service/service-3-min.jpg b/public/assets/images/service/service-3-min.jpg new file mode 100644 index 0000000..c43e429 Binary files /dev/null and b/public/assets/images/service/service-3-min.jpg differ diff --git a/public/assets/images/service/service-4-min.jpg b/public/assets/images/service/service-4-min.jpg new file mode 100644 index 0000000..c7b226e Binary files /dev/null and b/public/assets/images/service/service-4-min.jpg differ diff --git a/public/assets/images/service/service-5-min.jpg b/public/assets/images/service/service-5-min.jpg new file mode 100644 index 0000000..70ea01d Binary files /dev/null and b/public/assets/images/service/service-5-min.jpg differ diff --git a/public/assets/images/service/service-6-min.jpg b/public/assets/images/service/service-6-min.jpg new file mode 100644 index 0000000..83308ef Binary files /dev/null and b/public/assets/images/service/service-6-min.jpg differ diff --git a/public/assets/images/service/service-7-min.jpg b/public/assets/images/service/service-7-min.jpg new file mode 100644 index 0000000..ead52d5 Binary files /dev/null and b/public/assets/images/service/service-7-min.jpg differ diff --git a/public/assets/images/service/service-8-min.jpg b/public/assets/images/service/service-8-min.jpg new file mode 100644 index 0000000..a15977d Binary files /dev/null and b/public/assets/images/service/service-8-min.jpg differ diff --git a/public/assets/images/service/service-brlow-min.jpg b/public/assets/images/service/service-brlow-min.jpg new file mode 100644 index 0000000..76d5dee Binary files /dev/null and b/public/assets/images/service/service-brlow-min.jpg differ diff --git a/public/assets/images/shape/wave-pattern-1.png b/public/assets/images/shape/wave-pattern-1.png new file mode 100644 index 0000000..e604950 Binary files /dev/null and b/public/assets/images/shape/wave-pattern-1.png differ diff --git a/public/assets/images/shape/wave-pattern-2.png b/public/assets/images/shape/wave-pattern-2.png new file mode 100644 index 0000000..38703a2 Binary files /dev/null and b/public/assets/images/shape/wave-pattern-2.png differ diff --git a/public/assets/images/shield.svg b/public/assets/images/shield.svg new file mode 100644 index 0000000..45a7083 --- /dev/null +++ b/public/assets/images/shield.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/images/shop/product-1-min.png b/public/assets/images/shop/product-1-min.png new file mode 100644 index 0000000..0c475fc Binary files /dev/null and b/public/assets/images/shop/product-1-min.png differ diff --git a/public/assets/images/shop/product-10-min.png b/public/assets/images/shop/product-10-min.png new file mode 100644 index 0000000..be8870b Binary files /dev/null and b/public/assets/images/shop/product-10-min.png differ diff --git a/public/assets/images/shop/product-2-min.png b/public/assets/images/shop/product-2-min.png new file mode 100644 index 0000000..8936730 Binary files /dev/null and b/public/assets/images/shop/product-2-min.png differ diff --git a/public/assets/images/shop/product-3-min.png b/public/assets/images/shop/product-3-min.png new file mode 100644 index 0000000..a2b4de3 Binary files /dev/null and b/public/assets/images/shop/product-3-min.png differ diff --git a/public/assets/images/shop/product-4-min.png b/public/assets/images/shop/product-4-min.png new file mode 100644 index 0000000..ef1067a Binary files /dev/null and b/public/assets/images/shop/product-4-min.png differ diff --git a/public/assets/images/shop/product-5-min.png b/public/assets/images/shop/product-5-min.png new file mode 100644 index 0000000..6cc16d8 Binary files /dev/null and b/public/assets/images/shop/product-5-min.png differ diff --git a/public/assets/images/shop/product-6-min.png b/public/assets/images/shop/product-6-min.png new file mode 100644 index 0000000..d56d5c2 Binary files /dev/null and b/public/assets/images/shop/product-6-min.png differ diff --git a/public/assets/images/shop/product-7-min.png b/public/assets/images/shop/product-7-min.png new file mode 100644 index 0000000..9018354 Binary files /dev/null and b/public/assets/images/shop/product-7-min.png differ diff --git a/public/assets/images/shop/product-8-min.png b/public/assets/images/shop/product-8-min.png new file mode 100644 index 0000000..2fe76d9 Binary files /dev/null and b/public/assets/images/shop/product-8-min.png differ diff --git a/public/assets/images/shop/product-9-min.png b/public/assets/images/shop/product-9-min.png new file mode 100644 index 0000000..914e858 Binary files /dev/null and b/public/assets/images/shop/product-9-min.png differ diff --git a/public/assets/images/slider/Graphics.png b/public/assets/images/slider/Graphics.png new file mode 100644 index 0000000..a54624a Binary files /dev/null and b/public/assets/images/slider/Graphics.png differ diff --git a/public/assets/images/slider/Icon-green.png b/public/assets/images/slider/Icon-green.png new file mode 100644 index 0000000..c21f29b Binary files /dev/null and b/public/assets/images/slider/Icon-green.png differ diff --git a/public/assets/images/slider/Icon-white.png b/public/assets/images/slider/Icon-white.png new file mode 100644 index 0000000..0aadfb9 Binary files /dev/null and b/public/assets/images/slider/Icon-white.png differ diff --git a/public/assets/images/slider/banner-1-1.jpg b/public/assets/images/slider/banner-1-1.jpg new file mode 100644 index 0000000..7421482 Binary files /dev/null and b/public/assets/images/slider/banner-1-1.jpg differ diff --git a/public/assets/images/slider/banner-1-2.jpg b/public/assets/images/slider/banner-1-2.jpg new file mode 100644 index 0000000..2321478 Binary files /dev/null and b/public/assets/images/slider/banner-1-2.jpg differ diff --git a/public/assets/images/slider/banner-1-3.jpg b/public/assets/images/slider/banner-1-3.jpg new file mode 100644 index 0000000..0b2eda6 Binary files /dev/null and b/public/assets/images/slider/banner-1-3.jpg differ diff --git a/public/assets/images/slider/banner-2-bg.jpg b/public/assets/images/slider/banner-2-bg.jpg new file mode 100644 index 0000000..7a418f5 Binary files /dev/null and b/public/assets/images/slider/banner-2-bg.jpg differ diff --git a/public/assets/images/slider/banner-3-1.jpg b/public/assets/images/slider/banner-3-1.jpg new file mode 100644 index 0000000..d02e365 Binary files /dev/null and b/public/assets/images/slider/banner-3-1.jpg differ diff --git a/public/assets/images/slider/banner-3-2.jpg b/public/assets/images/slider/banner-3-2.jpg new file mode 100644 index 0000000..7f0a59a Binary files /dev/null and b/public/assets/images/slider/banner-3-2.jpg differ diff --git a/public/assets/images/slider/banner-3-3.jpg b/public/assets/images/slider/banner-3-3.jpg new file mode 100644 index 0000000..e95ce31 Binary files /dev/null and b/public/assets/images/slider/banner-3-3.jpg differ diff --git a/public/assets/images/slider/banner-5-1.jpg b/public/assets/images/slider/banner-5-1.jpg new file mode 100644 index 0000000..0976053 Binary files /dev/null and b/public/assets/images/slider/banner-5-1.jpg differ diff --git a/public/assets/images/slider/banner-5-2.jpg b/public/assets/images/slider/banner-5-2.jpg new file mode 100644 index 0000000..2e3f9d9 Binary files /dev/null and b/public/assets/images/slider/banner-5-2.jpg differ diff --git a/public/assets/images/slider/banner-5-3.jpg b/public/assets/images/slider/banner-5-3.jpg new file mode 100644 index 0000000..2321e73 Binary files /dev/null and b/public/assets/images/slider/banner-5-3.jpg differ diff --git a/public/assets/images/slider/banner-5-4.jpg b/public/assets/images/slider/banner-5-4.jpg new file mode 100644 index 0000000..4ae525d Binary files /dev/null and b/public/assets/images/slider/banner-5-4.jpg differ diff --git a/public/assets/images/slider/banner-6-1.jpg b/public/assets/images/slider/banner-6-1.jpg new file mode 100644 index 0000000..f5530c7 Binary files /dev/null and b/public/assets/images/slider/banner-6-1.jpg differ diff --git a/public/assets/images/slider/banner-6-2.jpg b/public/assets/images/slider/banner-6-2.jpg new file mode 100644 index 0000000..5e65290 Binary files /dev/null and b/public/assets/images/slider/banner-6-2.jpg differ diff --git a/public/assets/images/slider/banner-6-3.jpg b/public/assets/images/slider/banner-6-3.jpg new file mode 100644 index 0000000..b0d392a Binary files /dev/null and b/public/assets/images/slider/banner-6-3.jpg differ diff --git a/public/assets/images/slider/banner-single-4-1.jpg b/public/assets/images/slider/banner-single-4-1.jpg new file mode 100644 index 0000000..44e52d3 Binary files /dev/null and b/public/assets/images/slider/banner-single-4-1.jpg differ diff --git a/public/assets/images/slider/banner-single-4-bg.png b/public/assets/images/slider/banner-single-4-bg.png new file mode 100644 index 0000000..d3a525b Binary files /dev/null and b/public/assets/images/slider/banner-single-4-bg.png differ diff --git a/public/assets/images/slider/review-girls.png b/public/assets/images/slider/review-girls.png new file mode 100644 index 0000000..eadd1cc Binary files /dev/null and b/public/assets/images/slider/review-girls.png differ diff --git a/public/assets/images/slider/shape-1.png b/public/assets/images/slider/shape-1.png new file mode 100644 index 0000000..477db0d Binary files /dev/null and b/public/assets/images/slider/shape-1.png differ diff --git a/public/assets/images/slider/slider-2-shape.png b/public/assets/images/slider/slider-2-shape.png new file mode 100644 index 0000000..50b77d4 Binary files /dev/null and b/public/assets/images/slider/slider-2-shape.png differ diff --git a/public/assets/images/slider/slider-image-2-1.png b/public/assets/images/slider/slider-image-2-1.png new file mode 100644 index 0000000..d5128a4 Binary files /dev/null and b/public/assets/images/slider/slider-image-2-1.png differ diff --git a/public/assets/images/slider/slider-image-2-2.png b/public/assets/images/slider/slider-image-2-2.png new file mode 100644 index 0000000..5ae0cb7 Binary files /dev/null and b/public/assets/images/slider/slider-image-2-2.png differ diff --git a/public/assets/images/sub-1-min.png b/public/assets/images/sub-1-min.png new file mode 100644 index 0000000..2d031bf Binary files /dev/null and b/public/assets/images/sub-1-min.png differ diff --git a/public/assets/images/team/team-1-min.png b/public/assets/images/team/team-1-min.png new file mode 100644 index 0000000..aa39be0 Binary files /dev/null and b/public/assets/images/team/team-1-min.png differ diff --git a/public/assets/images/team/team-2-min.png b/public/assets/images/team/team-2-min.png new file mode 100644 index 0000000..c2b19dc Binary files /dev/null and b/public/assets/images/team/team-2-min.png differ diff --git a/public/assets/images/team/team-3-min.png b/public/assets/images/team/team-3-min.png new file mode 100644 index 0000000..c9f31fe Binary files /dev/null and b/public/assets/images/team/team-3-min.png differ diff --git a/public/assets/images/team/team-4-min.png b/public/assets/images/team/team-4-min.png new file mode 100644 index 0000000..566c162 Binary files /dev/null and b/public/assets/images/team/team-4-min.png differ diff --git a/public/assets/images/team/team-5.png b/public/assets/images/team/team-5.png new file mode 100644 index 0000000..67aff0d Binary files /dev/null and b/public/assets/images/team/team-5.png differ diff --git a/public/assets/images/team/team-6.png b/public/assets/images/team/team-6.png new file mode 100644 index 0000000..a8128ff Binary files /dev/null and b/public/assets/images/team/team-6.png differ diff --git a/public/assets/images/team/team-7.png b/public/assets/images/team/team-7.png new file mode 100644 index 0000000..aa74925 Binary files /dev/null and b/public/assets/images/team/team-7.png differ diff --git a/public/assets/images/team/team-8.png b/public/assets/images/team/team-8.png new file mode 100644 index 0000000..20d0d24 Binary files /dev/null and b/public/assets/images/team/team-8.png differ diff --git a/public/assets/images/team/team-detail-min.png b/public/assets/images/team/team-detail-min.png new file mode 100644 index 0000000..6d52ac0 Binary files /dev/null and b/public/assets/images/team/team-detail-min.png differ diff --git a/public/assets/images/team/team-ex-1-min.png b/public/assets/images/team/team-ex-1-min.png new file mode 100644 index 0000000..a64e74d Binary files /dev/null and b/public/assets/images/team/team-ex-1-min.png differ diff --git a/public/assets/images/testimonial-image-1.jpg b/public/assets/images/testimonial-image-1.jpg new file mode 100644 index 0000000..24a7108 Binary files /dev/null and b/public/assets/images/testimonial-image-1.jpg differ diff --git a/public/assets/images/testimonial/test-1-min.png b/public/assets/images/testimonial/test-1-min.png new file mode 100644 index 0000000..a248b93 Binary files /dev/null and b/public/assets/images/testimonial/test-1-min.png differ diff --git a/public/assets/images/testimonial/test-2-min.png b/public/assets/images/testimonial/test-2-min.png new file mode 100644 index 0000000..9cd4a11 Binary files /dev/null and b/public/assets/images/testimonial/test-2-min.png differ diff --git a/public/assets/images/testimonial/test-3-min.png b/public/assets/images/testimonial/test-3-min.png new file mode 100644 index 0000000..0d3b4de Binary files /dev/null and b/public/assets/images/testimonial/test-3-min.png differ diff --git a/public/assets/images/testimonial/testimonial-image-1.jpg b/public/assets/images/testimonial/testimonial-image-1.jpg new file mode 100644 index 0000000..8f57099 Binary files /dev/null and b/public/assets/images/testimonial/testimonial-image-1.jpg differ diff --git a/public/assets/images/theme-logo.png b/public/assets/images/theme-logo.png new file mode 100644 index 0000000..9926cd8 Binary files /dev/null and b/public/assets/images/theme-logo.png differ diff --git a/public/assets/images/wave-pat-1.png b/public/assets/images/wave-pat-1.png new file mode 100644 index 0000000..1469a3b Binary files /dev/null and b/public/assets/images/wave-pat-1.png differ diff --git a/public/assets/images/why-choose-1.png b/public/assets/images/why-choose-1.png new file mode 100644 index 0000000..f07dfdd Binary files /dev/null and b/public/assets/images/why-choose-1.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..92ea929 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/vercel.svg b/public/vercel.svg new file mode 100644 index 0000000..fbf0e25 --- /dev/null +++ b/public/vercel.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/util/blog.json b/util/blog.json new file mode 100644 index 0000000..b934fd0 --- /dev/null +++ b/util/blog.json @@ -0,0 +1,66 @@ +[ + { + "id": 1, + "title": "Scientists speculate that ours might not be held", + "img": "blog-1.png", + "category": "Gaming", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 2, + "title": "The Multiverse is the collection of alternate universes", + "img": "blog-2.png", + "category": "Tech", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 3, + "title": "That share a universal hierarchy a large variety of these", + "img": "blog-3.png", + "category": "Movie", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 4, + "title": "Universes were originated from another due to a major", + "img": "blog-4.png", + "category": "Sports", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 5, + "title": "A hypothetical collection of potentially diverse", + "img": "blog-5.png", + "category": "Gaming", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 6, + "title": "Stanford physicists Andrei Linde In a new study", + "img": "blog-6.png", + "category": "Tech", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 7, + "title": "Accessible to telescopes, is about 90 billion years", + "img": "blog-7.png", + "category": "Movie", + "author": "miranda h.", + "date": "25 April 2023" + }, + { + "id": 8, + "title": "Observable universes each of which would comprise", + "img": "blog-8.png", + "category": "Sports", + "author": "miranda h.", + "date": "25 April 2023" + } +] \ No newline at end of file diff --git a/util/data.js b/util/data.js new file mode 100644 index 0000000..460d991 --- /dev/null +++ b/util/data.js @@ -0,0 +1,67 @@ +const data = [ + { + id: 1, + title: "Scientists speculate that ours might not be held", + img: "blog01.jpg", + category: "Gaming", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 2, + title: "The Multiverse is the collection of alternate universes", + img: "blog02.jpg", + category: "Tech", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 3, + title: "That share a universal hierarchy a large variety of these", + img: "blog03.jpg", + category: "Movie", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 4, + title: "Universes were originated from another due to a major", + img: "blog04.jpg", + category: "Sports", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 5, + title: "A hypothetical collection of potentially diverse", + img: "blog05.jpg", + category: "Gaming", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 6, + title: "Stanford physicists Andrei Linde In a new study", + img: "blog06.jpg", + category: "Tech", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 7, + title: "Accessible to telescopes, is about 90 billion years", + img: "blog07.jpg", + category: "Movie", + author: "miranda h.", + date: "25 April 2023", + }, + { + id: 8, + title: "Observable universes each of which would comprise", + img: "blog08.jpg", + category: "Sports", + author: "miranda h.", + date: "25 April 2023", + } +] +export default data \ No newline at end of file