From 8574691b755677f243f252737bb751cbc501a5c4 Mon Sep 17 00:00:00 2001 From: mukesh13 Date: Wed, 18 Jun 2025 18:44:42 +0530 Subject: [PATCH] Initial Commit --- .gitignore | 41 + README.md | 36 + app/(homes)/finance-advisor/page.jsx | 47 + app/(homes)/finance-consulting/page.jsx | 43 + app/(homes)/insurance-consulting/page.jsx | 64 + app/(homes)/marketing-consulting/page.jsx | 49 + app/(otherPages)/404/page.jsx | 52 + app/(otherPages)/about/page.jsx | 61 + app/(otherPages)/blog/page.jsx | 52 + app/(otherPages)/career/page.jsx | 56 + app/(otherPages)/coming-soon/page.jsx | 89 + app/(otherPages)/contact-us/page.jsx | 27 + app/(otherPages)/faqs/page.jsx | 56 + app/(otherPages)/portfolio/page.jsx | 57 + app/(otherPages)/pricing/page.jsx | 56 + app/(otherPages)/single-post/[id]/page.jsx | 57 + app/(otherPages)/single-project/[id]/page.jsx | 66 + app/(otherPages)/team/page.jsx | 55 + app/(services)/service-details/[id]/page.jsx | 61 + app/(services)/services/page.jsx | 63 + app/(shop)/cart/page.jsx | 49 + app/(shop)/checkout/page.jsx | 48 + app/(shop)/product-details/[id]/page.jsx | 57 + app/(shop)/shop/page.jsx | 46 + app/favicon.ico | Bin 0 -> 652 bytes app/layout.js | 30 + app/not-found.jsx | 52 + app/page.jsx | 59 + components/common/Challanges.jsx | 127 + components/common/Contact.jsx | 106 + components/common/Countdown.jsx | 206 + components/common/DropdownSelect.jsx | 91 + components/common/Faqs.jsx | 212 + components/common/LayoutWrapper.jsx | 311 + components/common/OdometerComponent.jsx | 70 + components/common/Pricing.jsx | 59 + components/common/ScrollTop.jsx | 90 + components/common/Services.jsx | 153 + components/common/Testimonials.jsx | 136 + components/common/ThreeImageDisplay.jsx | 59 + components/footers/Footer1.jsx | 333 + components/footers/Footer2.jsx | 273 + components/footers/Footer3.jsx | 315 + components/footers/Footer4.jsx | 338 + components/footers/Footer5.jsx | 253 + components/headers/Header1.jsx | 89 + components/headers/Header2.jsx | 154 + components/headers/Header3.jsx | 68 + components/headers/Header4.jsx | 79 + components/headers/Header5.jsx | 86 + components/headers/Nav.jsx | 140 + components/headers/SearchPopup.jsx | 79 + components/homes/finance-advisor/Blogs.jsx | 96 + .../homes/finance-advisor/CaseStudies.jsx | 82 + components/homes/finance-advisor/Choices.jsx | 164 + components/homes/finance-advisor/Contact.jsx | 83 + components/homes/finance-advisor/Faq.jsx | 201 + components/homes/finance-advisor/Features.jsx | 95 + components/homes/finance-advisor/Hero.jsx | 433 + components/homes/finance-advisor/Services.jsx | 557 + components/homes/finance-advisor/Team.jsx | 142 + .../homes/finance-advisor/Testimonials.jsx | 371 + components/homes/finance-consulting/About.jsx | 86 + components/homes/finance-consulting/Blogs.jsx | 115 + .../homes/finance-consulting/CaseStudies.jsx | 98 + components/homes/finance-consulting/Cta.jsx | 109 + components/homes/finance-consulting/Faqs.jsx | 185 + .../homes/finance-consulting/Features.jsx | 71 + components/homes/finance-consulting/Hero.jsx | 103 + .../homes/finance-consulting/MarqueeSlide.jsx | 279 + .../homes/finance-consulting/Process.jsx | 189 + .../homes/finance-consulting/Services.jsx | 105 + .../homes/finance-consulting/Testimonials.jsx | 105 + components/homes/home-1/Blogs.jsx | 107 + components/homes/home-1/Brands.jsx | 462 + components/homes/home-1/CaseStudies.jsx | 122 + components/homes/home-1/Hero.jsx | 67 + components/homes/home-1/Process.jsx | 201 + .../homes/insurance-consulting/About.jsx | 96 + .../homes/insurance-consulting/Approach.jsx | 225 + .../homes/insurance-consulting/Blogs.jsx | 106 + .../insurance-consulting/CaseStudies.jsx | 196 + components/homes/insurance-consulting/Cta.jsx | 77 + .../homes/insurance-consulting/Facts.jsx | 70 + .../homes/insurance-consulting/Faqs.jsx | 206 + .../homes/insurance-consulting/Hero.jsx | 101 + .../homes/insurance-consulting/Services.jsx | 83 + .../insurance-consulting/Testimonials.jsx | 224 + .../homes/marketing-consulting/About.jsx | 119 + .../homes/marketing-consulting/Banner.jsx | 106 + .../homes/marketing-consulting/Blogs.jsx | 140 + .../homes/marketing-consulting/Brands.jsx | 37 + .../marketing-consulting/CaseStudies.jsx | 165 + components/homes/marketing-consulting/Cta.jsx | 28 + .../homes/marketing-consulting/Faqs.jsx | 159 + .../homes/marketing-consulting/Features.jsx | 139 + .../homes/marketing-consulting/Features2.jsx | 386 + .../homes/marketing-consulting/Figures.jsx | 14 + .../homes/marketing-consulting/Hero.jsx | 185 + .../homes/marketing-consulting/Services.jsx | 172 + .../marketing-consulting/Testimonials.jsx | 62 + components/modals/Mobilemenu.jsx | 280 + components/otherPages/About.jsx | 232 + components/otherPages/Benefits.jsx | 74 + components/otherPages/BlogCommentBox.jsx | 65 + components/otherPages/BlogDetails.jsx | 351 + components/otherPages/BlogSidebar.jsx | 165 + components/otherPages/Blogs.jsx | 82 + components/otherPages/Contact.jsx | 111 + components/otherPages/Newsletter.jsx | 39 + components/otherPages/OfficeLocations.jsx | 44 + components/otherPages/Oppertunities.jsx | 47 + components/otherPages/Portfolio.jsx | 128 + components/otherPages/PortfolioSingle.jsx | 202 + components/otherPages/Process.jsx | 203 + components/otherPages/ServiceAdvantages.jsx | 82 + components/otherPages/ServiceDetails.jsx | 111 + components/otherPages/ServiceInfo.jsx | 528 + components/otherPages/Services.jsx | 113 + components/otherPages/Team.jsx | 66 + components/otherPages/Team2.jsx | 71 + components/shop/Checkout.jsx | 344 + components/shop/CommentBox.jsx | 65 + components/shop/FilteringOptions.jsx | 137 + components/shop/RelatedProducts.jsx | 115 + components/shop/Shop.jsx | 472 + components/shop/ShopCart.jsx | 173 + components/shop/ShopDescription.jsx | 299 + components/shop/ShopDetails.jsx | 371 + context/Context.jsx | 76 + data/benefits.js | 38 + data/blogs.js | 339 + data/brands.js | 11 + data/caseStudies.js | 479 + data/facts.js | 187 + data/heroSlides.js | 31 + data/jobs.js | 42 + data/locations.js | 20 + data/menu.js | 64 + data/pricing.js | 46 + data/products.js | 92 + data/services.js | 193 + data/team.js | 99 + data/testimonials.js | 109 + jsconfig.json | 7 + next.config.mjs | 8 + package-lock.json | 1800 ++ package.json | 26 + public/css/animate.min.css | 4385 +++++ public/css/bootstrap-select.min.css | 535 + public/css/bootstrap.css | 13896 ++++++++++++++++ public/css/drift-basic.min.css | 1 + public/css/odometer.min.css | 83 + public/css/photoswipe.css | 420 + public/css/styles.css.map | 1 + public/css/swiper-bundle.min.css | 14 + public/font/fonts.css | 288 + public/font/icons/icomoon/Read Me.txt | 7 + public/font/icons/icomoon/demo-files/demo.css | 152 + public/font/icons/icomoon/demo-files/demo.js | 30 + public/font/icons/icomoon/demo.html | 1620 ++ public/font/icons/icomoon/fonts/icomoon.eot | Bin 0 -> 36104 bytes public/font/icons/icomoon/fonts/icomoon.svg | 123 + public/font/icons/icomoon/fonts/icomoon.ttf | Bin 0 -> 35940 bytes public/font/icons/icomoon/fonts/icomoon.woff | Bin 0 -> 36016 bytes public/font/icons/icomoon/selection.json | 1 + public/font/icons/icomoon/style.css | 366 + public/images/avatar/avatar-1.jpg | Bin 0 -> 7625 bytes public/images/avatar/avatar-10.jpg | Bin 0 -> 7837 bytes public/images/avatar/avatar-11.jpg | Bin 0 -> 7829 bytes public/images/avatar/avatar-12.jpg | Bin 0 -> 7829 bytes public/images/avatar/avatar-13.jpg | Bin 0 -> 7829 bytes public/images/avatar/avatar-14.jpg | Bin 0 -> 7627 bytes public/images/avatar/avatar-15.jpg | Bin 0 -> 7627 bytes public/images/avatar/avatar-16.jpg | Bin 0 -> 7690 bytes public/images/avatar/avatar-17.jpg | Bin 0 -> 7829 bytes public/images/avatar/avatar-2.jpg | Bin 0 -> 8180 bytes public/images/avatar/avatar-3.jpg | Bin 0 -> 8180 bytes public/images/avatar/avatar-4.jpg | Bin 0 -> 8172 bytes public/images/avatar/avatar-5.jpg | Bin 0 -> 7987 bytes public/images/avatar/avatar-6.jpg | Bin 0 -> 7987 bytes public/images/avatar/avatar-7.jpg | Bin 0 -> 7987 bytes public/images/avatar/avatar-8.jpg | Bin 0 -> 7827 bytes public/images/avatar/avatar-9.jpg | Bin 0 -> 7835 bytes public/images/avatar/facts-1.png | Bin 0 -> 1485 bytes public/images/avatar/facts-2.png | Bin 0 -> 1482 bytes public/images/avatar/facts-3.png | Bin 0 -> 1432 bytes public/images/avatar/facts-4.png | Bin 0 -> 1432 bytes public/images/avatar/facts-5.png | Bin 0 -> 1432 bytes public/images/avatar/facts-6.png | Bin 0 -> 1432 bytes public/images/avatar/facts-7.png | Bin 0 -> 1489 bytes public/images/avatar/facts-8.png | Bin 0 -> 1489 bytes public/images/avatar/facts-9.png | Bin 0 -> 1489 bytes public/images/blog/blog-1.jpg | Bin 0 -> 9331 bytes public/images/blog/blog-10.jpg | Bin 0 -> 9531 bytes public/images/blog/blog-11.jpg | Bin 0 -> 10653 bytes public/images/blog/blog-12.jpg | Bin 0 -> 9347 bytes public/images/blog/blog-13.jpg | Bin 0 -> 9355 bytes public/images/blog/blog-14.jpg | Bin 0 -> 9347 bytes public/images/blog/blog-15.jpg | Bin 0 -> 9347 bytes public/images/blog/blog-16.jpg | Bin 0 -> 8773 bytes public/images/blog/blog-17.jpg | Bin 0 -> 8775 bytes public/images/blog/blog-18.jpg | Bin 0 -> 8773 bytes public/images/blog/blog-19.jpg | Bin 0 -> 8775 bytes public/images/blog/blog-2.jpg | Bin 0 -> 9331 bytes public/images/blog/blog-3.jpg | Bin 0 -> 9331 bytes public/images/blog/blog-4.jpg | Bin 0 -> 9331 bytes public/images/blog/blog-5.jpg | Bin 0 -> 9331 bytes public/images/blog/blog-6.jpg | Bin 0 -> 9339 bytes public/images/blog/blog-7.jpg | Bin 0 -> 9529 bytes public/images/blog/blog-8.jpg | Bin 0 -> 9529 bytes public/images/blog/blog-9.jpg | Bin 0 -> 9529 bytes public/images/blog/box-listing-1.jpg | Bin 0 -> 8149 bytes public/images/blog/box-listing-2.jpg | Bin 0 -> 8149 bytes public/images/blog/box-listing-3.jpg | Bin 0 -> 8203 bytes public/images/blog/box-listing-4.jpg | Bin 0 -> 8149 bytes public/images/blog/box-listing-5.jpg | Bin 0 -> 8203 bytes public/images/blog/box-listing-6.jpg | Bin 0 -> 8203 bytes public/images/blog/single-post-1.jpg | Bin 0 -> 13002 bytes public/images/blog/single-post-2.jpg | Bin 0 -> 10289 bytes public/images/box-icon/auto-conversations.svg | 5 + public/images/box-icon/briefcase-03.svg | 6 + public/images/box-icon/building-07.svg | 3 + public/images/box-icon/business-idea.png | Bin 0 -> 1783 bytes public/images/box-icon/check-verified-01.svg | 4 + public/images/box-icon/check-verified-02.svg | 4 + public/images/box-icon/clock.svg | 5 + public/images/box-icon/coins-stacked.svg | 3 + public/images/box-icon/creative-solutions.svg | 5 + public/images/box-icon/currency-exchange.png | Bin 0 -> 1783 bytes public/images/box-icon/database.svg | 7 + public/images/box-icon/discover-circle.svg | 5 + public/images/box-icon/email-marketing.png | Bin 0 -> 1783 bytes public/images/box-icon/handshake.svg | 14 + public/images/box-icon/heart-circle.svg | 6 + public/images/box-icon/house.svg | 3 + public/images/box-icon/invoice.svg | 5 + public/images/box-icon/laptop-issue.svg | 6 + public/images/box-icon/line-board.svg | 6 + public/images/box-icon/line-chart.svg | 19 + public/images/box-icon/line-radar.svg | 3 + public/images/box-icon/medical-circle.svg | 4 + public/images/box-icon/money-bag-02.svg | 5 + public/images/box-icon/package-open.svg | 4 + public/images/box-icon/settings-02.svg | 6 + public/images/box-icon/stock-market.png | Bin 0 -> 1783 bytes public/images/box-icon/taxes.svg | 8 + public/images/brands/brand-1-1.png | Bin 0 -> 1189 bytes public/images/brands/brand-1.png | Bin 0 -> 2246 bytes public/images/brands/brand-10.png | Bin 0 -> 2106 bytes public/images/brands/brand-11.png | Bin 0 -> 1645 bytes public/images/brands/brand-12.png | Bin 0 -> 2380 bytes public/images/brands/brand-13.png | Bin 0 -> 1740 bytes public/images/brands/brand-14.png | Bin 0 -> 2367 bytes public/images/brands/brand-15.png | Bin 0 -> 1663 bytes public/images/brands/brand-16.png | Bin 0 -> 2010 bytes public/images/brands/brand-17.png | Bin 0 -> 2311 bytes public/images/brands/brand-18.png | Bin 0 -> 1639 bytes public/images/brands/brand-19.png | Bin 0 -> 1992 bytes public/images/brands/brand-2-1.png | Bin 0 -> 1588 bytes public/images/brands/brand-2.png | Bin 0 -> 2839 bytes public/images/brands/brand-20.png | Bin 0 -> 2912 bytes public/images/brands/brand-21.png | Bin 0 -> 2662 bytes public/images/brands/brand-22.png | Bin 0 -> 1771 bytes public/images/brands/brand-23.png | Bin 0 -> 2466 bytes public/images/brands/brand-24.png | Bin 0 -> 2121 bytes public/images/brands/brand-25.png | Bin 0 -> 1853 bytes public/images/brands/brand-26.png | Bin 0 -> 1780 bytes public/images/brands/brand-27.png | Bin 0 -> 1687 bytes public/images/brands/brand-28.png | Bin 0 -> 1504 bytes public/images/brands/brand-29.png | Bin 0 -> 1874 bytes public/images/brands/brand-3-1.png | Bin 0 -> 1355 bytes public/images/brands/brand-3.png | Bin 0 -> 3516 bytes public/images/brands/brand-30.png | Bin 0 -> 2362 bytes public/images/brands/brand-31.png | Bin 0 -> 1714 bytes public/images/brands/brand-32.png | Bin 0 -> 892 bytes public/images/brands/brand-33.png | Bin 0 -> 3318 bytes public/images/brands/brand-34.png | Bin 0 -> 2281 bytes public/images/brands/brand-4-1.png | Bin 0 -> 1117 bytes public/images/brands/brand-4.png | Bin 0 -> 2230 bytes public/images/brands/brand-5-1.png | Bin 0 -> 1075 bytes public/images/brands/brand-5.png | Bin 0 -> 2205 bytes public/images/brands/brand-6-1.png | Bin 0 -> 1116 bytes public/images/brands/brand-6.png | Bin 0 -> 2600 bytes public/images/brands/brand-7-1.png | Bin 0 -> 991 bytes public/images/brands/brand-7.png | Bin 0 -> 2000 bytes public/images/brands/brand-8-1.png | Bin 0 -> 1296 bytes public/images/brands/brand-8.png | Bin 0 -> 2186 bytes public/images/brands/brand-9-1.png | Bin 0 -> 1391 bytes public/images/brands/brand1.png | Bin 0 -> 5829 bytes public/images/brands/brand2.png | Bin 0 -> 36783 bytes public/images/country/us.svg | 15 + public/images/country/vn.svg | 16 + public/images/demo/demo-1.jpg | Bin 0 -> 8553 bytes public/images/demo/demo-2.jpg | Bin 0 -> 8553 bytes public/images/demo/demo-3.jpg | Bin 0 -> 8553 bytes public/images/demo/demo-4.jpg | Bin 0 -> 8553 bytes public/images/demo/demo-5.jpg | Bin 0 -> 8553 bytes public/images/item/404.png | Bin 0 -> 8054 bytes public/images/item/banner-item.png | Bin 0 -> 9212 bytes public/images/item/bg-faq.png | Bin 0 -> 5760 bytes public/images/item/bg-project.png | Bin 0 -> 10398 bytes public/images/item/clutch-rating.png | Bin 0 -> 8762 bytes public/images/item/ellipse-1.png | Bin 0 -> 7675 bytes public/images/item/ellipse-2.png | Bin 0 -> 13191 bytes public/images/item/item-1.png | Bin 0 -> 7789 bytes public/images/item/item-accounting.png | Bin 0 -> 3064 bytes public/images/item/item-approach-1.png | Bin 0 -> 1848 bytes public/images/item/item-approach-2.png | Bin 0 -> 1659 bytes public/images/item/item-choice-1.png | Bin 0 -> 17614 bytes public/images/item/item-choice-2.png | Bin 0 -> 18591 bytes public/images/item/item-expert.png | Bin 0 -> 1820 bytes public/images/item/item-finance.png | Bin 0 -> 16789 bytes public/images/item/item-testimonial.png | Bin 0 -> 2829 bytes public/images/item/item-title.png | Bin 0 -> 1468 bytes public/images/item/logo-banner-item.png | Bin 0 -> 1558 bytes public/images/item/shape-1.png | Bin 0 -> 4328 bytes public/images/item/shape-10.png | Bin 0 -> 19860 bytes public/images/item/shape-11.png | Bin 0 -> 7900 bytes public/images/item/shape-2.png | Bin 0 -> 2786 bytes public/images/item/shape-3.png | Bin 0 -> 13613 bytes public/images/item/shape-4.png | Bin 0 -> 24079 bytes public/images/item/shape-5.png | Bin 0 -> 6660 bytes public/images/item/shape-6.1.png | Bin 0 -> 10642 bytes public/images/item/shape-6.png | Bin 0 -> 10675 bytes public/images/item/shape-7.png | Bin 0 -> 99437 bytes public/images/item/shape-8.png | Bin 0 -> 7485 bytes public/images/item/shape-9.png | Bin 0 -> 7900 bytes public/images/item/shape.png | Bin 0 -> 8412 bytes public/images/item/team-emty.png | Bin 0 -> 6817 bytes public/images/logo/favicon.svg | 3 + public/images/logo/footer-logo-2.1.png | Bin 0 -> 1560 bytes public/images/logo/footer-logo-2.png | Bin 0 -> 4082 bytes public/images/logo/footer-logo-3.png | Bin 0 -> 5954 bytes public/images/logo/footer-logo-4.png | Bin 0 -> 50932 bytes public/images/logo/footer-logo.png | Bin 0 -> 5697 bytes public/images/logo/footer-logo1.png | Bin 0 -> 167632 bytes public/images/logo/loading.png | Bin 0 -> 859 bytes public/images/logo/logo-1.png | Bin 0 -> 9670 bytes public/images/logo/logo-2.png | Bin 0 -> 6054 bytes public/images/logo/logo-3.png | Bin 0 -> 22514 bytes public/images/logo/logo-4.png | Bin 0 -> 16245 bytes public/images/logo/logo-5.png | Bin 0 -> 1206 bytes public/images/logo/logo-6.png | Bin 0 -> 1314 bytes public/images/logo/logo.png | Bin 0 -> 12147 bytes public/images/logo/mercury-2.png | Bin 0 -> 1890 bytes public/images/logo/mercury.png | Bin 0 -> 4080 bytes public/images/page-title/Image.jpg | Bin 0 -> 2843 bytes public/images/page-title/Image2.png | Bin 0 -> 1634 bytes public/images/page-title/banner-slide-1.jpg | Bin 0 -> 117651 bytes public/images/page-title/banner-slide-2.jpg | Bin 0 -> 14031 bytes public/images/page-title/banner-slide-3.jpg | Bin 0 -> 14031 bytes public/images/page-title/banner-slide-4.jpg | Bin 0 -> 13145 bytes public/images/page-title/banner-slide-5.jpg | Bin 0 -> 13145 bytes public/images/page-title/banner-slide-6.jpg | Bin 0 -> 13145 bytes public/images/page-title/banner-slide1.jpg | Bin 0 -> 14014 bytes public/images/page-title/img-1..png | Bin 0 -> 669199 bytes public/images/page-title/img-1.jpg | Bin 0 -> 241782 bytes public/images/page-title/img-2.jpg | Bin 0 -> 179649 bytes public/images/page-title/img-2.png | Bin 0 -> 432340 bytes public/images/page-title/img-3.jpg | Bin 0 -> 149290 bytes public/images/page-title/img-3.png | Bin 0 -> 571266 bytes public/images/page-title/infinity-img-1.jpg | Bin 0 -> 9520 bytes public/images/page-title/infinity-img-2.jpg | Bin 0 -> 8284 bytes public/images/page-title/infinity-img-3.jpg | Bin 0 -> 9520 bytes public/images/page-title/infinity-img-4.jpg | Bin 0 -> 8307 bytes public/images/page-title/infinity-img-5.jpg | Bin 0 -> 9520 bytes public/images/page-title/infinity-img-6.jpg | Bin 0 -> 8307 bytes public/images/page-title/page-title-1.jpg | Bin 0 -> 20635 bytes public/images/page-title/person.png | Bin 0 -> 3118 bytes public/images/section/banner-form-help.jpg | Bin 0 -> 9610 bytes public/images/section/bg-testimonial.png | Bin 0 -> 79042 bytes public/images/section/career-1.jpg | Bin 0 -> 14170 bytes public/images/section/case-studies-1.jpg | Bin 0 -> 9340 bytes public/images/section/case-studies-10.jpg | Bin 0 -> 9149 bytes public/images/section/case-studies-11.jpg | Bin 0 -> 9147 bytes public/images/section/case-studies-12.jpg | Bin 0 -> 9147 bytes public/images/section/case-studies-13.jpg | Bin 0 -> 9147 bytes public/images/section/case-studies-14.jpg | Bin 0 -> 9147 bytes public/images/section/case-studies-15.jpg | Bin 0 -> 10164 bytes public/images/section/case-studies-16.jpg | Bin 0 -> 9064 bytes public/images/section/case-studies-17.jpg | Bin 0 -> 9023 bytes public/images/section/case-studies-18.jpg | Bin 0 -> 9038 bytes public/images/section/case-studies-19.jpg | Bin 0 -> 9023 bytes public/images/section/case-studies-2.jpg | Bin 0 -> 9340 bytes public/images/section/case-studies-20.jpg | Bin 0 -> 320487 bytes public/images/section/case-studies-21.jpg | Bin 0 -> 318589 bytes public/images/section/case-studies-22.jpg | Bin 0 -> 302204 bytes public/images/section/case-studies-23.jpg | Bin 0 -> 299170 bytes public/images/section/case-studies-24.jpg | Bin 0 -> 281777 bytes public/images/section/case-studies-3.jpg | Bin 0 -> 12452 bytes public/images/section/case-studies-4.jpg | Bin 0 -> 12247 bytes public/images/section/case-studies-5.jpg | Bin 0 -> 12248 bytes public/images/section/case-studies-6.jpg | Bin 0 -> 8956 bytes public/images/section/case-studies-7.jpg | Bin 0 -> 8955 bytes public/images/section/case-studies-8.jpg | Bin 0 -> 8956 bytes public/images/section/case-studies-9.jpg | Bin 0 -> 8956 bytes public/images/section/challenges-item-1.jpg | Bin 0 -> 7611 bytes public/images/section/challenges-item-10.jpg | Bin 0 -> 7605 bytes public/images/section/challenges-item-11.jpg | Bin 0 -> 7605 bytes public/images/section/challenges-item-2.jpg | Bin 0 -> 7611 bytes public/images/section/challenges-item-3.jpg | Bin 0 -> 7603 bytes public/images/section/challenges-item-4.jpg | Bin 0 -> 7611 bytes public/images/section/challenges-item-5.jpg | Bin 0 -> 7603 bytes public/images/section/challenges-item-6.jpg | Bin 0 -> 7603 bytes public/images/section/challenges-item-7.jpg | Bin 0 -> 7604 bytes public/images/section/challenges-item-8.jpg | Bin 0 -> 7603 bytes public/images/section/challenges-item-9.jpg | Bin 0 -> 7603 bytes public/images/section/cta.jpg | Bin 0 -> 14160 bytes public/images/section/img-with-shape-1.jpg | Bin 0 -> 10744 bytes public/images/section/img-with-shape-2.jpg | Bin 0 -> 10654 bytes public/images/section/img-with-shape-3.jpg | Bin 0 -> 10428 bytes public/images/section/img-with-shape-4.jpg | Bin 0 -> 10667 bytes public/images/section/img-with-shape-5.jpg | Bin 0 -> 10363 bytes public/images/section/img-with-shape-6.jpg | Bin 0 -> 10745 bytes public/images/section/section-about-1.jpg | Bin 0 -> 4748 bytes public/images/section/section-about-2.jpg | Bin 0 -> 9716 bytes public/images/section/section-about.jpg | Bin 0 -> 10324 bytes public/images/section/section-approach.jpg | Bin 0 -> 12929 bytes public/images/section/section-choose.jpg | Bin 0 -> 10318 bytes public/images/section/service-1.jpg | Bin 0 -> 10428 bytes public/images/section/service-10.jpg | Bin 0 -> 9372 bytes public/images/section/service-11.jpg | Bin 0 -> 9380 bytes public/images/section/service-2.jpg | Bin 0 -> 10420 bytes public/images/section/service-3.jpg | Bin 0 -> 10428 bytes public/images/section/service-4.jpg | Bin 0 -> 10420 bytes public/images/section/service-5.jpg | Bin 0 -> 11051 bytes public/images/section/service-6.jpg | Bin 0 -> 11051 bytes public/images/section/service-7.jpg | Bin 0 -> 11051 bytes public/images/section/service-8.jpg | Bin 0 -> 11051 bytes public/images/section/service-9.jpg | Bin 0 -> 9369 bytes public/images/section/single-project-1.jpg | Bin 0 -> 15136 bytes public/images/section/single-project-2.jpg | Bin 0 -> 10865 bytes public/images/section/single-project-3.jpg | Bin 0 -> 10865 bytes public/images/section/testimonial-1.jpg | Bin 0 -> 11753 bytes public/images/section/testimonial-2.jpg | Bin 0 -> 11755 bytes public/images/section/testimonial-3.jpg | Bin 0 -> 11761 bytes public/images/shop/cart-item.jpg | Bin 0 -> 8681 bytes public/images/shop/product-1.jpg | Bin 0 -> 9152 bytes public/images/shop/product-2.jpg | Bin 0 -> 9160 bytes public/images/shop/product-3.jpg | Bin 0 -> 9160 bytes public/images/shop/product-4.jpg | Bin 0 -> 9152 bytes public/images/shop/product-5.jpg | Bin 0 -> 9177 bytes public/images/shop/product-6.jpg | Bin 0 -> 9169 bytes public/images/shop/product-7.jpg | Bin 0 -> 9152 bytes public/images/shop/product-8.jpg | Bin 0 -> 9152 bytes public/images/shop/product-9.jpg | Bin 0 -> 9152 bytes public/images/shop/thumbs-1.jpg | Bin 0 -> 8513 bytes public/images/shop/thumbs-2.jpg | Bin 0 -> 8522 bytes public/images/shop/thumbs-3.jpg | Bin 0 -> 8513 bytes public/images/shop/thumbs-4.jpg | Bin 0 -> 8513 bytes public/images/shop/thumbs-main-1.jpg | Bin 0 -> 11843 bytes public/images/shop/thumbs-main-2.jpg | Bin 0 -> 11843 bytes public/images/shop/thumbs-main-3.jpg | Bin 0 -> 11843 bytes public/images/shop/thumbs-main-4.jpg | Bin 0 -> 11843 bytes public/images/team/team-1.jpg | Bin 0 -> 9336 bytes public/images/team/team-10.jpg | Bin 0 -> 9347 bytes public/images/team/team-11.jpg | Bin 0 -> 2436 bytes public/images/team/team-12.jpg | Bin 0 -> 2436 bytes public/images/team/team-13.jpg | Bin 0 -> 2436 bytes public/images/team/team-14.jpg | Bin 0 -> 2436 bytes public/images/team/team-2.jpg | Bin 0 -> 9345 bytes public/images/team/team-3.jpg | Bin 0 -> 9353 bytes public/images/team/team-4.jpg | Bin 0 -> 9345 bytes public/images/team/team-5.jpg | Bin 0 -> 9345 bytes public/images/team/team-6.jpg | Bin 0 -> 9345 bytes public/images/team/team-7.jpg | Bin 0 -> 9353 bytes public/images/team/team-8.jpg | Bin 0 -> 9345 bytes public/images/team/team-9.jpg | Bin 0 -> 9345 bytes public/scss/_reset.scss | 1969 +++ public/scss/_responsive.scss | 2675 +++ public/scss/_sections.scss | 1134 ++ public/scss/_widgets.scss | 1555 ++ public/scss/abstracts/_index.scss | 2 + public/scss/abstracts/_mixin.scss | 75 + public/scss/abstracts/_variable.scss | 70 + public/scss/app.scss | 36 + public/scss/component/_accordion.scss | 192 + public/scss/component/_animation.scss | 294 + public/scss/component/_blog.scss | 412 + public/scss/component/_button.scss | 306 + public/scss/component/_footer.scss | 307 + public/scss/component/_form.scss | 466 + public/scss/component/_header.scss | 638 + public/scss/component/_hover.scss | 267 + public/scss/component/_icon-box.scss | 189 + public/scss/component/_index.scss | 38 + public/scss/component/_map.scss | 0 public/scss/component/_nice-select.scss | 277 + public/scss/component/_pop-up.scss | 157 + public/scss/component/_range-slider.scss | 309 + public/scss/component/_shop.scss | 806 + public/scss/component/_slider.scss | 140 + public/scss/component/_tabs.scss | 248 + public/scss/component/_testimonial.scss | 128 + public/scss/component/_zoom.scss | 80 + public/scss/custom.scss | 121 + public/scss/main.scss | 13 + reducer/FilterReducer.js | 43 + utlis/splitText.js | 447 + utlis/wow.js | 462 + 501 files changed, 57565 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app/(homes)/finance-advisor/page.jsx create mode 100644 app/(homes)/finance-consulting/page.jsx create mode 100644 app/(homes)/insurance-consulting/page.jsx create mode 100644 app/(homes)/marketing-consulting/page.jsx create mode 100644 app/(otherPages)/404/page.jsx create mode 100644 app/(otherPages)/about/page.jsx create mode 100644 app/(otherPages)/blog/page.jsx create mode 100644 app/(otherPages)/career/page.jsx create mode 100644 app/(otherPages)/coming-soon/page.jsx create mode 100644 app/(otherPages)/contact-us/page.jsx create mode 100644 app/(otherPages)/faqs/page.jsx create mode 100644 app/(otherPages)/portfolio/page.jsx create mode 100644 app/(otherPages)/pricing/page.jsx create mode 100644 app/(otherPages)/single-post/[id]/page.jsx create mode 100644 app/(otherPages)/single-project/[id]/page.jsx create mode 100644 app/(otherPages)/team/page.jsx create mode 100644 app/(services)/service-details/[id]/page.jsx create mode 100644 app/(services)/services/page.jsx create mode 100644 app/(shop)/cart/page.jsx create mode 100644 app/(shop)/checkout/page.jsx create mode 100644 app/(shop)/product-details/[id]/page.jsx create mode 100644 app/(shop)/shop/page.jsx create mode 100644 app/favicon.ico create mode 100644 app/layout.js create mode 100644 app/not-found.jsx create mode 100644 app/page.jsx create mode 100644 components/common/Challanges.jsx create mode 100644 components/common/Contact.jsx create mode 100644 components/common/Countdown.jsx create mode 100644 components/common/DropdownSelect.jsx create mode 100644 components/common/Faqs.jsx create mode 100644 components/common/LayoutWrapper.jsx create mode 100644 components/common/OdometerComponent.jsx create mode 100644 components/common/Pricing.jsx create mode 100644 components/common/ScrollTop.jsx create mode 100644 components/common/Services.jsx create mode 100644 components/common/Testimonials.jsx create mode 100644 components/common/ThreeImageDisplay.jsx create mode 100644 components/footers/Footer1.jsx create mode 100644 components/footers/Footer2.jsx create mode 100644 components/footers/Footer3.jsx create mode 100644 components/footers/Footer4.jsx create mode 100644 components/footers/Footer5.jsx create mode 100644 components/headers/Header1.jsx create mode 100644 components/headers/Header2.jsx create mode 100644 components/headers/Header3.jsx create mode 100644 components/headers/Header4.jsx create mode 100644 components/headers/Header5.jsx create mode 100644 components/headers/Nav.jsx create mode 100644 components/headers/SearchPopup.jsx create mode 100644 components/homes/finance-advisor/Blogs.jsx create mode 100644 components/homes/finance-advisor/CaseStudies.jsx create mode 100644 components/homes/finance-advisor/Choices.jsx create mode 100644 components/homes/finance-advisor/Contact.jsx create mode 100644 components/homes/finance-advisor/Faq.jsx create mode 100644 components/homes/finance-advisor/Features.jsx create mode 100644 components/homes/finance-advisor/Hero.jsx create mode 100644 components/homes/finance-advisor/Services.jsx create mode 100644 components/homes/finance-advisor/Team.jsx create mode 100644 components/homes/finance-advisor/Testimonials.jsx create mode 100644 components/homes/finance-consulting/About.jsx create mode 100644 components/homes/finance-consulting/Blogs.jsx create mode 100644 components/homes/finance-consulting/CaseStudies.jsx create mode 100644 components/homes/finance-consulting/Cta.jsx create mode 100644 components/homes/finance-consulting/Faqs.jsx create mode 100644 components/homes/finance-consulting/Features.jsx create mode 100644 components/homes/finance-consulting/Hero.jsx create mode 100644 components/homes/finance-consulting/MarqueeSlide.jsx create mode 100644 components/homes/finance-consulting/Process.jsx create mode 100644 components/homes/finance-consulting/Services.jsx create mode 100644 components/homes/finance-consulting/Testimonials.jsx create mode 100644 components/homes/home-1/Blogs.jsx create mode 100644 components/homes/home-1/Brands.jsx create mode 100644 components/homes/home-1/CaseStudies.jsx create mode 100644 components/homes/home-1/Hero.jsx create mode 100644 components/homes/home-1/Process.jsx create mode 100644 components/homes/insurance-consulting/About.jsx create mode 100644 components/homes/insurance-consulting/Approach.jsx create mode 100644 components/homes/insurance-consulting/Blogs.jsx create mode 100644 components/homes/insurance-consulting/CaseStudies.jsx create mode 100644 components/homes/insurance-consulting/Cta.jsx create mode 100644 components/homes/insurance-consulting/Facts.jsx create mode 100644 components/homes/insurance-consulting/Faqs.jsx create mode 100644 components/homes/insurance-consulting/Hero.jsx create mode 100644 components/homes/insurance-consulting/Services.jsx create mode 100644 components/homes/insurance-consulting/Testimonials.jsx create mode 100644 components/homes/marketing-consulting/About.jsx create mode 100644 components/homes/marketing-consulting/Banner.jsx create mode 100644 components/homes/marketing-consulting/Blogs.jsx create mode 100644 components/homes/marketing-consulting/Brands.jsx create mode 100644 components/homes/marketing-consulting/CaseStudies.jsx create mode 100644 components/homes/marketing-consulting/Cta.jsx create mode 100644 components/homes/marketing-consulting/Faqs.jsx create mode 100644 components/homes/marketing-consulting/Features.jsx create mode 100644 components/homes/marketing-consulting/Features2.jsx create mode 100644 components/homes/marketing-consulting/Figures.jsx create mode 100644 components/homes/marketing-consulting/Hero.jsx create mode 100644 components/homes/marketing-consulting/Services.jsx create mode 100644 components/homes/marketing-consulting/Testimonials.jsx create mode 100644 components/modals/Mobilemenu.jsx create mode 100644 components/otherPages/About.jsx create mode 100644 components/otherPages/Benefits.jsx create mode 100644 components/otherPages/BlogCommentBox.jsx create mode 100644 components/otherPages/BlogDetails.jsx create mode 100644 components/otherPages/BlogSidebar.jsx create mode 100644 components/otherPages/Blogs.jsx create mode 100644 components/otherPages/Contact.jsx create mode 100644 components/otherPages/Newsletter.jsx create mode 100644 components/otherPages/OfficeLocations.jsx create mode 100644 components/otherPages/Oppertunities.jsx create mode 100644 components/otherPages/Portfolio.jsx create mode 100644 components/otherPages/PortfolioSingle.jsx create mode 100644 components/otherPages/Process.jsx create mode 100644 components/otherPages/ServiceAdvantages.jsx create mode 100644 components/otherPages/ServiceDetails.jsx create mode 100644 components/otherPages/ServiceInfo.jsx create mode 100644 components/otherPages/Services.jsx create mode 100644 components/otherPages/Team.jsx create mode 100644 components/otherPages/Team2.jsx create mode 100644 components/shop/Checkout.jsx create mode 100644 components/shop/CommentBox.jsx create mode 100644 components/shop/FilteringOptions.jsx create mode 100644 components/shop/RelatedProducts.jsx create mode 100644 components/shop/Shop.jsx create mode 100644 components/shop/ShopCart.jsx create mode 100644 components/shop/ShopDescription.jsx create mode 100644 components/shop/ShopDetails.jsx create mode 100644 context/Context.jsx create mode 100644 data/benefits.js create mode 100644 data/blogs.js create mode 100644 data/brands.js create mode 100644 data/caseStudies.js create mode 100644 data/facts.js create mode 100644 data/heroSlides.js create mode 100644 data/jobs.js create mode 100644 data/locations.js create mode 100644 data/menu.js create mode 100644 data/pricing.js create mode 100644 data/products.js create mode 100644 data/services.js create mode 100644 data/team.js create mode 100644 data/testimonials.js create mode 100644 jsconfig.json create mode 100644 next.config.mjs create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public/css/animate.min.css create mode 100644 public/css/bootstrap-select.min.css create mode 100644 public/css/bootstrap.css create mode 100644 public/css/drift-basic.min.css create mode 100644 public/css/odometer.min.css create mode 100644 public/css/photoswipe.css create mode 100644 public/css/styles.css.map create mode 100644 public/css/swiper-bundle.min.css create mode 100644 public/font/fonts.css create mode 100644 public/font/icons/icomoon/Read Me.txt create mode 100644 public/font/icons/icomoon/demo-files/demo.css create mode 100644 public/font/icons/icomoon/demo-files/demo.js create mode 100644 public/font/icons/icomoon/demo.html create mode 100644 public/font/icons/icomoon/fonts/icomoon.eot create mode 100644 public/font/icons/icomoon/fonts/icomoon.svg create mode 100644 public/font/icons/icomoon/fonts/icomoon.ttf create mode 100644 public/font/icons/icomoon/fonts/icomoon.woff create mode 100644 public/font/icons/icomoon/selection.json create mode 100644 public/font/icons/icomoon/style.css create mode 100644 public/images/avatar/avatar-1.jpg create mode 100644 public/images/avatar/avatar-10.jpg create mode 100644 public/images/avatar/avatar-11.jpg create mode 100644 public/images/avatar/avatar-12.jpg create mode 100644 public/images/avatar/avatar-13.jpg create mode 100644 public/images/avatar/avatar-14.jpg create mode 100644 public/images/avatar/avatar-15.jpg create mode 100644 public/images/avatar/avatar-16.jpg create mode 100644 public/images/avatar/avatar-17.jpg create mode 100644 public/images/avatar/avatar-2.jpg create mode 100644 public/images/avatar/avatar-3.jpg create mode 100644 public/images/avatar/avatar-4.jpg create mode 100644 public/images/avatar/avatar-5.jpg create mode 100644 public/images/avatar/avatar-6.jpg create mode 100644 public/images/avatar/avatar-7.jpg create mode 100644 public/images/avatar/avatar-8.jpg create mode 100644 public/images/avatar/avatar-9.jpg create mode 100644 public/images/avatar/facts-1.png create mode 100644 public/images/avatar/facts-2.png create mode 100644 public/images/avatar/facts-3.png create mode 100644 public/images/avatar/facts-4.png create mode 100644 public/images/avatar/facts-5.png create mode 100644 public/images/avatar/facts-6.png create mode 100644 public/images/avatar/facts-7.png create mode 100644 public/images/avatar/facts-8.png create mode 100644 public/images/avatar/facts-9.png create mode 100644 public/images/blog/blog-1.jpg create mode 100644 public/images/blog/blog-10.jpg create mode 100644 public/images/blog/blog-11.jpg create mode 100644 public/images/blog/blog-12.jpg create mode 100644 public/images/blog/blog-13.jpg create mode 100644 public/images/blog/blog-14.jpg create mode 100644 public/images/blog/blog-15.jpg create mode 100644 public/images/blog/blog-16.jpg create mode 100644 public/images/blog/blog-17.jpg create mode 100644 public/images/blog/blog-18.jpg create mode 100644 public/images/blog/blog-19.jpg create mode 100644 public/images/blog/blog-2.jpg create mode 100644 public/images/blog/blog-3.jpg create mode 100644 public/images/blog/blog-4.jpg create mode 100644 public/images/blog/blog-5.jpg create mode 100644 public/images/blog/blog-6.jpg create mode 100644 public/images/blog/blog-7.jpg create mode 100644 public/images/blog/blog-8.jpg create mode 100644 public/images/blog/blog-9.jpg create mode 100644 public/images/blog/box-listing-1.jpg create mode 100644 public/images/blog/box-listing-2.jpg create mode 100644 public/images/blog/box-listing-3.jpg create mode 100644 public/images/blog/box-listing-4.jpg create mode 100644 public/images/blog/box-listing-5.jpg create mode 100644 public/images/blog/box-listing-6.jpg create mode 100644 public/images/blog/single-post-1.jpg create mode 100644 public/images/blog/single-post-2.jpg create mode 100644 public/images/box-icon/auto-conversations.svg create mode 100644 public/images/box-icon/briefcase-03.svg create mode 100644 public/images/box-icon/building-07.svg create mode 100644 public/images/box-icon/business-idea.png create mode 100644 public/images/box-icon/check-verified-01.svg create mode 100644 public/images/box-icon/check-verified-02.svg create mode 100644 public/images/box-icon/clock.svg create mode 100644 public/images/box-icon/coins-stacked.svg create mode 100644 public/images/box-icon/creative-solutions.svg create mode 100644 public/images/box-icon/currency-exchange.png create mode 100644 public/images/box-icon/database.svg create mode 100644 public/images/box-icon/discover-circle.svg create mode 100644 public/images/box-icon/email-marketing.png create mode 100644 public/images/box-icon/handshake.svg create mode 100644 public/images/box-icon/heart-circle.svg create mode 100644 public/images/box-icon/house.svg create mode 100644 public/images/box-icon/invoice.svg create mode 100644 public/images/box-icon/laptop-issue.svg create mode 100644 public/images/box-icon/line-board.svg create mode 100644 public/images/box-icon/line-chart.svg create mode 100644 public/images/box-icon/line-radar.svg create mode 100644 public/images/box-icon/medical-circle.svg create mode 100644 public/images/box-icon/money-bag-02.svg create mode 100644 public/images/box-icon/package-open.svg create mode 100644 public/images/box-icon/settings-02.svg create mode 100644 public/images/box-icon/stock-market.png create mode 100644 public/images/box-icon/taxes.svg create mode 100644 public/images/brands/brand-1-1.png create mode 100644 public/images/brands/brand-1.png create mode 100644 public/images/brands/brand-10.png create mode 100644 public/images/brands/brand-11.png create mode 100644 public/images/brands/brand-12.png create mode 100644 public/images/brands/brand-13.png create mode 100644 public/images/brands/brand-14.png create mode 100644 public/images/brands/brand-15.png create mode 100644 public/images/brands/brand-16.png create mode 100644 public/images/brands/brand-17.png create mode 100644 public/images/brands/brand-18.png create mode 100644 public/images/brands/brand-19.png create mode 100644 public/images/brands/brand-2-1.png create mode 100644 public/images/brands/brand-2.png create mode 100644 public/images/brands/brand-20.png create mode 100644 public/images/brands/brand-21.png create mode 100644 public/images/brands/brand-22.png create mode 100644 public/images/brands/brand-23.png create mode 100644 public/images/brands/brand-24.png create mode 100644 public/images/brands/brand-25.png create mode 100644 public/images/brands/brand-26.png create mode 100644 public/images/brands/brand-27.png create mode 100644 public/images/brands/brand-28.png create mode 100644 public/images/brands/brand-29.png create mode 100644 public/images/brands/brand-3-1.png create mode 100644 public/images/brands/brand-3.png create mode 100644 public/images/brands/brand-30.png create mode 100644 public/images/brands/brand-31.png create mode 100644 public/images/brands/brand-32.png create mode 100644 public/images/brands/brand-33.png create mode 100644 public/images/brands/brand-34.png create mode 100644 public/images/brands/brand-4-1.png create mode 100644 public/images/brands/brand-4.png create mode 100644 public/images/brands/brand-5-1.png create mode 100644 public/images/brands/brand-5.png create mode 100644 public/images/brands/brand-6-1.png create mode 100644 public/images/brands/brand-6.png create mode 100644 public/images/brands/brand-7-1.png create mode 100644 public/images/brands/brand-7.png create mode 100644 public/images/brands/brand-8-1.png create mode 100644 public/images/brands/brand-8.png create mode 100644 public/images/brands/brand-9-1.png create mode 100644 public/images/brands/brand1.png create mode 100644 public/images/brands/brand2.png create mode 100644 public/images/country/us.svg create mode 100644 public/images/country/vn.svg create mode 100644 public/images/demo/demo-1.jpg create mode 100644 public/images/demo/demo-2.jpg create mode 100644 public/images/demo/demo-3.jpg create mode 100644 public/images/demo/demo-4.jpg create mode 100644 public/images/demo/demo-5.jpg create mode 100644 public/images/item/404.png create mode 100644 public/images/item/banner-item.png create mode 100644 public/images/item/bg-faq.png create mode 100644 public/images/item/bg-project.png create mode 100644 public/images/item/clutch-rating.png create mode 100644 public/images/item/ellipse-1.png create mode 100644 public/images/item/ellipse-2.png create mode 100644 public/images/item/item-1.png create mode 100644 public/images/item/item-accounting.png create mode 100644 public/images/item/item-approach-1.png create mode 100644 public/images/item/item-approach-2.png create mode 100644 public/images/item/item-choice-1.png create mode 100644 public/images/item/item-choice-2.png create mode 100644 public/images/item/item-expert.png create mode 100644 public/images/item/item-finance.png create mode 100644 public/images/item/item-testimonial.png create mode 100644 public/images/item/item-title.png create mode 100644 public/images/item/logo-banner-item.png create mode 100644 public/images/item/shape-1.png create mode 100644 public/images/item/shape-10.png create mode 100644 public/images/item/shape-11.png create mode 100644 public/images/item/shape-2.png create mode 100644 public/images/item/shape-3.png create mode 100644 public/images/item/shape-4.png create mode 100644 public/images/item/shape-5.png create mode 100644 public/images/item/shape-6.1.png create mode 100644 public/images/item/shape-6.png create mode 100644 public/images/item/shape-7.png create mode 100644 public/images/item/shape-8.png create mode 100644 public/images/item/shape-9.png create mode 100644 public/images/item/shape.png create mode 100644 public/images/item/team-emty.png create mode 100644 public/images/logo/favicon.svg create mode 100644 public/images/logo/footer-logo-2.1.png create mode 100644 public/images/logo/footer-logo-2.png create mode 100644 public/images/logo/footer-logo-3.png create mode 100644 public/images/logo/footer-logo-4.png create mode 100644 public/images/logo/footer-logo.png create mode 100644 public/images/logo/footer-logo1.png create mode 100644 public/images/logo/loading.png create mode 100644 public/images/logo/logo-1.png create mode 100644 public/images/logo/logo-2.png create mode 100644 public/images/logo/logo-3.png create mode 100644 public/images/logo/logo-4.png create mode 100644 public/images/logo/logo-5.png create mode 100644 public/images/logo/logo-6.png create mode 100644 public/images/logo/logo.png create mode 100644 public/images/logo/mercury-2.png create mode 100644 public/images/logo/mercury.png create mode 100644 public/images/page-title/Image.jpg create mode 100644 public/images/page-title/Image2.png create mode 100644 public/images/page-title/banner-slide-1.jpg create mode 100644 public/images/page-title/banner-slide-2.jpg create mode 100644 public/images/page-title/banner-slide-3.jpg create mode 100644 public/images/page-title/banner-slide-4.jpg create mode 100644 public/images/page-title/banner-slide-5.jpg create mode 100644 public/images/page-title/banner-slide-6.jpg create mode 100644 public/images/page-title/banner-slide1.jpg create mode 100644 public/images/page-title/img-1..png create mode 100644 public/images/page-title/img-1.jpg create mode 100644 public/images/page-title/img-2.jpg create mode 100644 public/images/page-title/img-2.png create mode 100644 public/images/page-title/img-3.jpg create mode 100644 public/images/page-title/img-3.png create mode 100644 public/images/page-title/infinity-img-1.jpg create mode 100644 public/images/page-title/infinity-img-2.jpg create mode 100644 public/images/page-title/infinity-img-3.jpg create mode 100644 public/images/page-title/infinity-img-4.jpg create mode 100644 public/images/page-title/infinity-img-5.jpg create mode 100644 public/images/page-title/infinity-img-6.jpg create mode 100644 public/images/page-title/page-title-1.jpg create mode 100644 public/images/page-title/person.png create mode 100644 public/images/section/banner-form-help.jpg create mode 100644 public/images/section/bg-testimonial.png create mode 100644 public/images/section/career-1.jpg create mode 100644 public/images/section/case-studies-1.jpg create mode 100644 public/images/section/case-studies-10.jpg create mode 100644 public/images/section/case-studies-11.jpg create mode 100644 public/images/section/case-studies-12.jpg create mode 100644 public/images/section/case-studies-13.jpg create mode 100644 public/images/section/case-studies-14.jpg create mode 100644 public/images/section/case-studies-15.jpg create mode 100644 public/images/section/case-studies-16.jpg create mode 100644 public/images/section/case-studies-17.jpg create mode 100644 public/images/section/case-studies-18.jpg create mode 100644 public/images/section/case-studies-19.jpg create mode 100644 public/images/section/case-studies-2.jpg create mode 100644 public/images/section/case-studies-20.jpg create mode 100644 public/images/section/case-studies-21.jpg create mode 100644 public/images/section/case-studies-22.jpg create mode 100644 public/images/section/case-studies-23.jpg create mode 100644 public/images/section/case-studies-24.jpg create mode 100644 public/images/section/case-studies-3.jpg create mode 100644 public/images/section/case-studies-4.jpg create mode 100644 public/images/section/case-studies-5.jpg create mode 100644 public/images/section/case-studies-6.jpg create mode 100644 public/images/section/case-studies-7.jpg create mode 100644 public/images/section/case-studies-8.jpg create mode 100644 public/images/section/case-studies-9.jpg create mode 100644 public/images/section/challenges-item-1.jpg create mode 100644 public/images/section/challenges-item-10.jpg create mode 100644 public/images/section/challenges-item-11.jpg create mode 100644 public/images/section/challenges-item-2.jpg create mode 100644 public/images/section/challenges-item-3.jpg create mode 100644 public/images/section/challenges-item-4.jpg create mode 100644 public/images/section/challenges-item-5.jpg create mode 100644 public/images/section/challenges-item-6.jpg create mode 100644 public/images/section/challenges-item-7.jpg create mode 100644 public/images/section/challenges-item-8.jpg create mode 100644 public/images/section/challenges-item-9.jpg create mode 100644 public/images/section/cta.jpg create mode 100644 public/images/section/img-with-shape-1.jpg create mode 100644 public/images/section/img-with-shape-2.jpg create mode 100644 public/images/section/img-with-shape-3.jpg create mode 100644 public/images/section/img-with-shape-4.jpg create mode 100644 public/images/section/img-with-shape-5.jpg create mode 100644 public/images/section/img-with-shape-6.jpg create mode 100644 public/images/section/section-about-1.jpg create mode 100644 public/images/section/section-about-2.jpg create mode 100644 public/images/section/section-about.jpg create mode 100644 public/images/section/section-approach.jpg create mode 100644 public/images/section/section-choose.jpg create mode 100644 public/images/section/service-1.jpg create mode 100644 public/images/section/service-10.jpg create mode 100644 public/images/section/service-11.jpg create mode 100644 public/images/section/service-2.jpg create mode 100644 public/images/section/service-3.jpg create mode 100644 public/images/section/service-4.jpg create mode 100644 public/images/section/service-5.jpg create mode 100644 public/images/section/service-6.jpg create mode 100644 public/images/section/service-7.jpg create mode 100644 public/images/section/service-8.jpg create mode 100644 public/images/section/service-9.jpg create mode 100644 public/images/section/single-project-1.jpg create mode 100644 public/images/section/single-project-2.jpg create mode 100644 public/images/section/single-project-3.jpg create mode 100644 public/images/section/testimonial-1.jpg create mode 100644 public/images/section/testimonial-2.jpg create mode 100644 public/images/section/testimonial-3.jpg create mode 100644 public/images/shop/cart-item.jpg create mode 100644 public/images/shop/product-1.jpg create mode 100644 public/images/shop/product-2.jpg create mode 100644 public/images/shop/product-3.jpg create mode 100644 public/images/shop/product-4.jpg create mode 100644 public/images/shop/product-5.jpg create mode 100644 public/images/shop/product-6.jpg create mode 100644 public/images/shop/product-7.jpg create mode 100644 public/images/shop/product-8.jpg create mode 100644 public/images/shop/product-9.jpg create mode 100644 public/images/shop/thumbs-1.jpg create mode 100644 public/images/shop/thumbs-2.jpg create mode 100644 public/images/shop/thumbs-3.jpg create mode 100644 public/images/shop/thumbs-4.jpg create mode 100644 public/images/shop/thumbs-main-1.jpg create mode 100644 public/images/shop/thumbs-main-2.jpg create mode 100644 public/images/shop/thumbs-main-3.jpg create mode 100644 public/images/shop/thumbs-main-4.jpg create mode 100644 public/images/team/team-1.jpg create mode 100644 public/images/team/team-10.jpg create mode 100644 public/images/team/team-11.jpg create mode 100644 public/images/team/team-12.jpg create mode 100644 public/images/team/team-13.jpg create mode 100644 public/images/team/team-14.jpg create mode 100644 public/images/team/team-2.jpg create mode 100644 public/images/team/team-3.jpg create mode 100644 public/images/team/team-4.jpg create mode 100644 public/images/team/team-5.jpg create mode 100644 public/images/team/team-6.jpg create mode 100644 public/images/team/team-7.jpg create mode 100644 public/images/team/team-8.jpg create mode 100644 public/images/team/team-9.jpg create mode 100644 public/scss/_reset.scss create mode 100644 public/scss/_responsive.scss create mode 100644 public/scss/_sections.scss create mode 100644 public/scss/_widgets.scss create mode 100644 public/scss/abstracts/_index.scss create mode 100644 public/scss/abstracts/_mixin.scss create mode 100644 public/scss/abstracts/_variable.scss create mode 100644 public/scss/app.scss create mode 100644 public/scss/component/_accordion.scss create mode 100644 public/scss/component/_animation.scss create mode 100644 public/scss/component/_blog.scss create mode 100644 public/scss/component/_button.scss create mode 100644 public/scss/component/_footer.scss create mode 100644 public/scss/component/_form.scss create mode 100644 public/scss/component/_header.scss create mode 100644 public/scss/component/_hover.scss create mode 100644 public/scss/component/_icon-box.scss create mode 100644 public/scss/component/_index.scss create mode 100644 public/scss/component/_map.scss create mode 100644 public/scss/component/_nice-select.scss create mode 100644 public/scss/component/_pop-up.scss create mode 100644 public/scss/component/_range-slider.scss create mode 100644 public/scss/component/_shop.scss create mode 100644 public/scss/component/_slider.scss create mode 100644 public/scss/component/_tabs.scss create mode 100644 public/scss/component/_testimonial.scss create mode 100644 public/scss/component/_zoom.scss create mode 100644 public/scss/custom.scss create mode 100644 public/scss/main.scss create mode 100644 reducer/FilterReducer.js create mode 100644 utlis/splitText.js create mode 100644 utlis/wow.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ef6a52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/README.md b/README.md new file mode 100644 index 0000000..09a8a4d --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/app/(homes)/finance-advisor/page.jsx b/app/(homes)/finance-advisor/page.jsx new file mode 100644 index 0000000..efb290a --- /dev/null +++ b/app/(homes)/finance-advisor/page.jsx @@ -0,0 +1,47 @@ +import Footer3 from "@/components/footers/Footer3"; +import Header3 from "@/components/headers/Header3"; +import Blogs from "@/components/homes/finance-advisor/Blogs"; +import CaseStudies from "@/components/homes/finance-advisor/CaseStudies"; +import Choices from "@/components/homes/finance-advisor/Choices"; +import Contact from "@/components/homes/finance-advisor/Contact"; +import Faq from "@/components/homes/finance-advisor/Faq"; +import Features from "@/components/homes/finance-advisor/Features"; +import Hero from "@/components/homes/finance-advisor/Hero"; +import Services from "@/components/homes/finance-advisor/Services"; +import Team from "@/components/homes/finance-advisor/Team"; +import Testimonials from "@/components/homes/finance-advisor/Testimonials"; +import React from "react"; +export const metadata = { + title: + "Finance Advisor || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function FinanceAdvisorPage() { + return ( + <> +
+
+ + +
+
+ + +
+ + + +
+
+ + +
+ + +
+ +
+ + ); +} diff --git a/app/(homes)/finance-consulting/page.jsx b/app/(homes)/finance-consulting/page.jsx new file mode 100644 index 0000000..f06ac8c --- /dev/null +++ b/app/(homes)/finance-consulting/page.jsx @@ -0,0 +1,43 @@ +import Footer2 from "@/components/footers/Footer2"; +import Header2 from "@/components/headers/Header2"; +import About from "@/components/homes/finance-consulting/About"; +import Blogs from "@/components/homes/finance-consulting/Blogs"; +import CaseStudies from "@/components/homes/finance-consulting/CaseStudies"; +import Cta from "@/components/homes/finance-consulting/Cta"; +import Faqs from "@/components/homes/finance-consulting/Faqs"; +import Features from "@/components/homes/finance-consulting/Features"; +import Hero from "@/components/homes/finance-consulting/Hero"; +import MarqueeSlide from "@/components/homes/finance-consulting/MarqueeSlide"; +import Process from "@/components/homes/finance-consulting/Process"; +import Services from "@/components/homes/finance-consulting/Services"; +import Testimonials from "@/components/homes/finance-consulting/Testimonials"; +import React from "react"; +export const metadata = { + title: + "Finance Consulting || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function FinanceCOnsultionPage() { + return ( + <> +
+ + {" "} +
+ + + + + + + + + + +
+ +
+ + ); +} diff --git a/app/(homes)/insurance-consulting/page.jsx b/app/(homes)/insurance-consulting/page.jsx new file mode 100644 index 0000000..68fe016 --- /dev/null +++ b/app/(homes)/insurance-consulting/page.jsx @@ -0,0 +1,64 @@ +import Footer4 from "@/components/footers/Footer4"; +import Header4 from "@/components/headers/Header4"; +import About from "@/components/homes/insurance-consulting/About"; +import Approach from "@/components/homes/insurance-consulting/Approach"; +import Blogs from "@/components/homes/insurance-consulting/Blogs"; +import CaseStudies from "@/components/homes/insurance-consulting/CaseStudies"; +import Cta from "@/components/homes/insurance-consulting/Cta"; +import Facts from "@/components/homes/insurance-consulting/Facts"; +import Faqs from "@/components/homes/insurance-consulting/Faqs"; +import Hero from "@/components/homes/insurance-consulting/Hero"; +import Services from "@/components/homes/insurance-consulting/Services"; +import Testimonials from "@/components/homes/insurance-consulting/Testimonials"; +import React from "react"; +export const metadata = { + title: + "Insurance Consulting || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function InsuranceConsultingPage() { + return ( + <> +
+
+ + +
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ + + +
{" "} +
+
+ + ); +} diff --git a/app/(homes)/marketing-consulting/page.jsx b/app/(homes)/marketing-consulting/page.jsx new file mode 100644 index 0000000..b808093 --- /dev/null +++ b/app/(homes)/marketing-consulting/page.jsx @@ -0,0 +1,49 @@ +import Footer5 from "@/components/footers/Footer5"; +import Header2 from "@/components/headers/Header2"; +import Contact from "@/components/common/Contact"; +import CaseStudies from "@/components/homes/marketing-consulting/CaseStudies"; +import Features2 from "@/components/homes/marketing-consulting/Features2"; +import Figures from "@/components/homes/marketing-consulting/Figures"; +import Hero from "@/components/homes/finance-consulting/Hero"; +import Services from "@/components/homes/finance-consulting/Services"; +import Testimonials from "@/components/homes/marketing-consulting/Testimonials"; +import Brands from "@/components/homes/marketing-consulting/Brands"; +import React from "react"; +import ThreeImageDisplay from "@/components/common/ThreeImageDisplay"; + +export const metadata = { + title: + "Marketing Consulting || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; + +export default function MarketingConsultionPage() { + return ( + <> +
+
+ + +
+
+ + +
+ + + + + + + +
+ +
+
+ +
+
+ + ); +} diff --git a/app/(otherPages)/404/page.jsx b/app/(otherPages)/404/page.jsx new file mode 100644 index 0000000..18713f3 --- /dev/null +++ b/app/(otherPages)/404/page.jsx @@ -0,0 +1,52 @@ +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Image from "next/image"; +import Link from "next/link"; + +import React from "react"; +export const metadata = { + title: + "Not Found Page || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function NotFoundPage() { + return ( + <> +
+ +
+
+
+
+ {404} +
+

+ We apologize, but the page you're looking for couldn't be found! +

+ + Back To Home + + +
+
+ shape +
+
+
+
+ + + + ); +} diff --git a/app/(otherPages)/about/page.jsx b/app/(otherPages)/about/page.jsx new file mode 100644 index 0000000..5f66226 --- /dev/null +++ b/app/(otherPages)/about/page.jsx @@ -0,0 +1,61 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Testimonials from "@/components/common/Testimonials"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import About from "@/components/otherPages/About"; +import Process from "@/components/otherPages/Process"; +import Team from "@/components/otherPages/Team"; +import React from "react"; +import Link from "next/link"; +export const metadata = { + title: + "About || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function AboutPage() { + return ( + <> +
+ +
+
+
+
+
+

+ Play a key role in
+ business advancement +

+

+ Promote innovation by introducing breakthrough ideas and + technologies
+ to improve business and customer experience. +

+
+
    +
  • + + Home + +
  • +
  • About us
  • +
+
+
+
+
+
+
+ + + + + + +
+ + + ); +} diff --git a/app/(otherPages)/blog/page.jsx b/app/(otherPages)/blog/page.jsx new file mode 100644 index 0000000..4786b13 --- /dev/null +++ b/app/(otherPages)/blog/page.jsx @@ -0,0 +1,52 @@ +import Link from "next/link"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Blogs from "@/components/otherPages/Blogs"; +export const metadata = { + title: + "Blog || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +import React from "react"; + +export default function BlogPage() { + return ( + <> +
+ +
+
+
+
+
+

+ Insights From Our Press +

+

+ Entrepreneurs and business leaders face barriers that can + restrain growth and profit. Understanding and
+ implementing effective strategies is the key to overcoming + obstacles and promoting your business towards success. +

+
+
    +
  • + + Home + +
  • +
  • Blog
  • +
+
+
+
+
+
+
+ +
+ + + ); +} diff --git a/app/(otherPages)/career/page.jsx b/app/(otherPages)/career/page.jsx new file mode 100644 index 0000000..dc740e7 --- /dev/null +++ b/app/(otherPages)/career/page.jsx @@ -0,0 +1,56 @@ +import Contact from "@/components/common/Contact"; + +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Benefits from "@/components/otherPages/Benefits"; +import Oppertunities from "@/components/otherPages/Oppertunities"; +import Link from "next/link"; + +import React from "react"; +export const metadata = { + title: + "Career || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function CareerPage() { + return ( + <> +
+ +
+
+
+
+
+

Career

+

+ A typical day is a mix of strategic thinking, + problem-solving, and client interaction. The work is + demanding
+ but rewarding, offering opportunities to tackle complex + challenges and drive positive change. +

+
+
    +
  • + + Home + +
  • +
  • Career
  • +
+
+
+
+
+
+
+ + + +
+ + + ); +} diff --git a/app/(otherPages)/coming-soon/page.jsx b/app/(otherPages)/coming-soon/page.jsx new file mode 100644 index 0000000..3bd0e99 --- /dev/null +++ b/app/(otherPages)/coming-soon/page.jsx @@ -0,0 +1,89 @@ +import React from "react"; +import Link from "next/link"; +import Image from "next/image"; +import Newsletter from "@/components/otherPages/Newsletter"; +import CountdownTimer from "@/components/common/Countdown"; +export const metadata = { + title: + "Comming Soon || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function ComingSoonPage() { + return ( + <> +
+ {/* header */} +
+
+
+
+
+
+
+ + More Info + + + + Contact Us + + +
+
+
+
+
+
+
+ {/* /header */} + {/* .page-title */} +
+
+
+
+
+ +
+
+

Before we unveil our new website.

+

+ Is part of innovation. We are on the verge of launching a + revolutionary foundation that revolutionize the industry.
+ Join us when we pave the way for the future. +

+ + +
+
+ shape +
+
+
+ {/* /.page-title */} +
+ + ); +} diff --git a/app/(otherPages)/contact-us/page.jsx b/app/(otherPages)/contact-us/page.jsx new file mode 100644 index 0000000..a9f8ef6 --- /dev/null +++ b/app/(otherPages)/contact-us/page.jsx @@ -0,0 +1,27 @@ +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Contact from "@/components/otherPages/Contact"; +import OfficeLocations from "@/components/otherPages/OfficeLocations"; + +import React from "react"; +export const metadata = { + title: + "Contact Us || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function ContactUsPage() { + return ( + <> +
+ + + +
+
+ +
+ + + ); +} diff --git a/app/(otherPages)/faqs/page.jsx b/app/(otherPages)/faqs/page.jsx new file mode 100644 index 0000000..4c95074 --- /dev/null +++ b/app/(otherPages)/faqs/page.jsx @@ -0,0 +1,56 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; + +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Link from "next/link"; +import React from "react"; +export const metadata = { + title: + "Faqs || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function FaqsPage() { + return ( + <> +
+ +
+
+
+
+
+

FAQs

+

+ Our holistic approach combines a comprehensive suite of + integrated services and
+ solutions to deliver maximum value and optimize your + operations. +

+
+
    +
  • + + Home + +
  • +
  • FAQs
  • +
+
+
+
+
+
+
+ + +
+ + + ); +} diff --git a/app/(otherPages)/portfolio/page.jsx b/app/(otherPages)/portfolio/page.jsx new file mode 100644 index 0000000..49adb36 --- /dev/null +++ b/app/(otherPages)/portfolio/page.jsx @@ -0,0 +1,57 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Link from "next/link"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Portfolio from "@/components/otherPages/Portfolio"; + +import React from "react"; +export const metadata = { + title: + "Portfolio || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function PortfolioPage() { + return ( + <> +
+ +
+
+
+
+
+

+ A deep diving into
+ the success of Advitex +

+

+ A deep dive into Advitex's success reveals a compelling case + study of innovation, strategic partnerships,
+ and customer commitment, leading to significant market + growth and industry recognition. +

+
+
    +
  • + + Home + +
  • +
  • Case Studie
  • +
+
+
+
+
+
+
+ + + +
+ + + ); +} diff --git a/app/(otherPages)/pricing/page.jsx b/app/(otherPages)/pricing/page.jsx new file mode 100644 index 0000000..17dc896 --- /dev/null +++ b/app/(otherPages)/pricing/page.jsx @@ -0,0 +1,56 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Link from "next/link"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Pricing from "@/components/common/Pricing"; + +import React from "react"; +export const metadata = { + title: + "Pricing || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function PricingPage() { + return ( + <> +
+ +
+
+
+
+
+

+ Pricing Plan +

+

+ his focuses on achieving tangible outcomes, such as + increased revenue, cost savings,
+ or improved efficiency, and ultimately driving + organizational success. +

+
+
    +
  • + + Home + +
  • +
  • Pricing
  • +
+
+
+
+
+
+
+ + + +
+ + + ); +} diff --git a/app/(otherPages)/single-post/[id]/page.jsx b/app/(otherPages)/single-post/[id]/page.jsx new file mode 100644 index 0000000..adb8a79 --- /dev/null +++ b/app/(otherPages)/single-post/[id]/page.jsx @@ -0,0 +1,57 @@ +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import BlogDetails from "@/components/otherPages/BlogDetails"; +import React from "react"; +import Link from "next/link"; +import { allBlogs } from "@/data/blogs"; +export const metadata = { + title: + "Single Post || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; + +export default async function BlogDetailsPage1({ params }) { + const { id } = await params; + + const blog = allBlogs.filter((p) => p.id == id)[0] || allBlogs[0]; + return ( + <> +
+ +
+
+
+
+
+

+ {blog.title} +

+

+ Entrepreneurs and business leaders face barriers that can + restrain growth and profit. Understanding and
+ implementing effective strategies is the key to overcoming + obstacles and promoting your business towards success. +

+
+
    +
  • + + Home + +
  • +
  • Single Post
  • +
  • {blog.title}
  • +
+
+
+
+
+
+
+ +
+ + + ); +} diff --git a/app/(otherPages)/single-project/[id]/page.jsx b/app/(otherPages)/single-project/[id]/page.jsx new file mode 100644 index 0000000..9a55277 --- /dev/null +++ b/app/(otherPages)/single-project/[id]/page.jsx @@ -0,0 +1,66 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Testimonials from "@/components/common/Testimonials"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import PortfolioSingle from "@/components/otherPages/PortfolioSingle"; + +import { allCaseStudies } from "@/data/caseStudies"; +import Link from "next/link"; +import React from "react"; +export const metadata = { + title: + "Single Prroject || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default async function SingleProjectPage({ params }) { + const { id } = await params; + + const caseStudy = + allCaseStudies.filter((p) => p.id == id)[0] || allCaseStudies[0]; + return ( + <> +
+ +
+
+
+
+
+

+ {caseStudy.title.split(" ").slice(0, 4)}
+ {caseStudy.title.split(" ").slice(4, 10)} +
+ {caseStudy.title.split(" ").slice(10)} +

+

+ Our holistic approach combines a comprehensive suite of + integrated services and
+ solutions to deliver maximum value and optimize your + operations. +

+
+
    +
  • + + Home + +
  • +
  • Project Details
  • +
+
+
+
+
+
+
+ + + + +
+ + + ); +} diff --git a/app/(otherPages)/team/page.jsx b/app/(otherPages)/team/page.jsx new file mode 100644 index 0000000..f406f80 --- /dev/null +++ b/app/(otherPages)/team/page.jsx @@ -0,0 +1,55 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Link from "next/link"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Team2 from "@/components/otherPages/Team2"; +import React from "react"; +export const metadata = { + title: + "Team || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function TeamPage() { + return ( + <> +
+ +
+
+
+
+
+

+ Get To Know Our Amazing Team +

+

+ With a passion for innovation and a dedication to + excellence, we bring diverse
+ expertise to every project we undertake. +

+
+
    +
  • + + Home + +
  • +
  • Our Team
  • +
+
+
+
+
+
+
+ + + + +
+ + + ); +} diff --git a/app/(services)/service-details/[id]/page.jsx b/app/(services)/service-details/[id]/page.jsx new file mode 100644 index 0000000..4e781a7 --- /dev/null +++ b/app/(services)/service-details/[id]/page.jsx @@ -0,0 +1,61 @@ +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; +import Pricing from "@/components/common/Pricing"; + +import Testimonials from "@/components/common/Testimonials"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Link from "next/link"; +import ServiceDetails from "@/components/otherPages/ServiceDetails"; +export const metadata = { + title: + "Service Details || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +import React from "react"; +import { allServices } from "@/data/services"; + +export default async function ServiceDetailsPage({ params }) { + const { id } = await params; + + const service = allServices.filter((p) => p.id == id)[0] || allServices[0]; + return ( + <> +
+ +
+
+
+
+
+

+
+
    +
  • + + Home + +
  • +
  • Services
  • +
  • +
+
+
+
+
+
+
+ + + + + +
+ + + ); +} diff --git a/app/(services)/services/page.jsx b/app/(services)/services/page.jsx new file mode 100644 index 0000000..1c79de4 --- /dev/null +++ b/app/(services)/services/page.jsx @@ -0,0 +1,63 @@ +import Challanges from "@/components/common/Challanges"; +import Contact from "@/components/common/Contact"; +import Faqs from "@/components/common/Faqs"; + +import Testimonials from "@/components/common/Testimonials"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import ServiceAdvantages from "@/components/otherPages/ServiceAdvantages"; +import Services from "@/components/otherPages/Services"; +import Link from "next/link"; +import React from "react"; +export const metadata = { + title: + "Services || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function ServicesPage() { + return ( + <> +
+ +
+
+
+
+
+

+ Our comprehensive
+ suite of services and solutions +

+

+ Our holistic approach combines a comprehensive suite of + integrated services and
+ solutions to deliver maximum value and optimize your + operations. +

+
+
    +
  • + + Home + +
  • +
  • Services
  • +
+
+
+
+
+
+
+ + + + + + +
+ + + ); +} diff --git a/app/(shop)/cart/page.jsx b/app/(shop)/cart/page.jsx new file mode 100644 index 0000000..785efaf --- /dev/null +++ b/app/(shop)/cart/page.jsx @@ -0,0 +1,49 @@ +import Contact from "@/components/common/Contact"; + +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Link from "next/link"; +import ShopCart from "@/components/shop/ShopCart"; + +import React from "react"; +export const metadata = { + title: + "Shop Cart || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function CartPage() { + return ( + <> +
+ +
+
+
+
+
+
+ Cart +
+
    +
  • + + Home + +
  • +
  • Cart
  • +
+
+
+
+
+
+
+
+ + +
+ + + ); +} diff --git a/app/(shop)/checkout/page.jsx b/app/(shop)/checkout/page.jsx new file mode 100644 index 0000000..a54c7ae --- /dev/null +++ b/app/(shop)/checkout/page.jsx @@ -0,0 +1,48 @@ +import Contact from "@/components/common/Contact"; + +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Checkout from "@/components/shop/Checkout"; +import Link from "next/link"; +import React from "react"; +export const metadata = { + title: + "Checkout || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function CheckoutPage() { + return ( + <> +
+ +
+
+
+
+
+
+ Checkout +
+
+
    +
  • + + Home + +
  • +
  • Checkout
  • +
+
+
+
+
+
+
+ + +
+ + + ); +} diff --git a/app/(shop)/product-details/[id]/page.jsx b/app/(shop)/product-details/[id]/page.jsx new file mode 100644 index 0000000..2979dcf --- /dev/null +++ b/app/(shop)/product-details/[id]/page.jsx @@ -0,0 +1,57 @@ +import Contact from "@/components/common/Contact"; +import Link from "next/link"; +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import RelatedProducts from "@/components/shop/RelatedProducts"; +import ShopDescription from "@/components/shop/ShopDescription"; +import ShopDetails from "@/components/shop/ShopDetails"; +import { products } from "@/data/products"; +export const metadata = { + title: + "Product Details || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default async function ProductDetailsPage({ params }) { + const { id } = await params; + + const product = products.filter((p) => p.id == id)[0] || products[0]; + + return ( + <> +
+ +
+
+
+
+
+
+ Products Detail +
+
    +
  • + + Home + +
  • +
  • Shop
  • +
  • {product.title}
  • +
+
+
+
+
+ {/* /.page-title */} +
+
+
+ + + + +
+ + + ); +} diff --git a/app/(shop)/shop/page.jsx b/app/(shop)/shop/page.jsx new file mode 100644 index 0000000..1952f98 --- /dev/null +++ b/app/(shop)/shop/page.jsx @@ -0,0 +1,46 @@ +import Contact from "@/components/common/Contact"; + +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Shop from "@/components/shop/Shop"; +import Link from "next/link"; +import React from "react"; +export const metadata = { + title: + "Shop || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function ShopPage() { + return ( + <> +
+ +
+
+
+
+
+
Shop
+
+
    +
  • + + Home + +
  • +
  • Shop
  • +
+
+
+
+
+
+
+ + +
+ + + ); +} diff --git a/app/favicon.ico b/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a54207b87e0acc6f642f991daa0c09f53b208f50 GIT binary patch literal 652 zcmV;70(1R|P)7?-)V09ZyR zPj7hgrv(T=jQf^aIZ*NtZF<=vCm70dO0Q z3JF;BLkLg``0^z*F`$juyan=xo)s+iGA^%@0MvItnMBwKYyrlMiEFY5 z6eD`t{7Sx%wIW9k0uPtHSE_U}Ay17-M;`!(B08UK-cA-cV@!JT9$f{#T&=8UI1WH?^(D$~gFi=(Hb&)hsOxGo z$_%hQV#YK=5b9KUF1UIGdy+)4p3 z$fV5H0RSqD0w0YLVFXvr%Vu*0_?lq&Ynr(E=b;Wz`@{7CKMlcV;Ha_fn0!OIK=f5C mpqyq%(p*=jOqnwM + +
+ + {children} + + + + +
+ + + ); +} diff --git a/app/not-found.jsx b/app/not-found.jsx new file mode 100644 index 0000000..18713f3 --- /dev/null +++ b/app/not-found.jsx @@ -0,0 +1,52 @@ +import Footer1 from "@/components/footers/Footer1"; +import Header1 from "@/components/headers/Header1"; +import Image from "next/image"; +import Link from "next/link"; + +import React from "react"; +export const metadata = { + title: + "Not Found Page || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; +export default function NotFoundPage() { + return ( + <> +
+ +
+
+
+
+ {404} +
+

+ We apologize, but the page you're looking for couldn't be found! +

+ + Back To Home + + +
+
+ shape +
+
+
+
+ + + + ); +} diff --git a/app/page.jsx b/app/page.jsx new file mode 100644 index 0000000..796e607 --- /dev/null +++ b/app/page.jsx @@ -0,0 +1,59 @@ +import Footer5 from "@/components/footers/Footer5"; +import Header2 from "@/components/headers/Header2"; +import Contact from "@/components/common/Contact"; +import CaseStudies from "@/components/homes/marketing-consulting/CaseStudies"; +import Features2 from "@/components/homes/marketing-consulting/Features2"; +import Figures from "@/components/homes/marketing-consulting/Figures"; +import Hero from "@/components/homes/finance-consulting/Hero"; +import ThreeImageDisplay from "@/components/common/ThreeImageDisplay"; +import Brands from "@/components/homes/marketing-consulting/Brands"; +import Services from "@/components/homes/finance-consulting/Services"; +import Testimonials from "@/components/homes/marketing-consulting/Testimonials"; +import React from "react"; + +export const metadata = { + title: + "Marketing Consulting || Advitex - Finance and Business Consulting React Nextjs Template", + description: + "Advitex - Finance and Business Consulting React Nextjs Template", +}; + +export default function MarketingConsultionPage() { + return ( + <> +
+
+ +
+ +
+
+
+ + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+
+ +
+
+ + ); +} \ No newline at end of file diff --git a/components/common/Challanges.jsx b/components/common/Challanges.jsx new file mode 100644 index 0000000..6fee055 --- /dev/null +++ b/components/common/Challanges.jsx @@ -0,0 +1,127 @@ +import React from "react"; +import Image from "next/image"; +export default function Challanges() { + return ( +
+ ); +} diff --git a/components/common/Contact.jsx b/components/common/Contact.jsx new file mode 100644 index 0000000..e48ca79 --- /dev/null +++ b/components/common/Contact.jsx @@ -0,0 +1,106 @@ +"use client"; +import React from "react"; +import Link from "next/link"; +import Image from "next/image"; + +export default function Contact() { + return ( +
+
+
+
+
+
+
+ Success is a team play, right? Let's work together! +
+
+
+
+
+068 5681 96 96
+

+ Call us for urgent +

+
+ + Get Direction + + +
+
+
+
+
e.preventDefault()} className="form-contact"> +
+ + +
+
+
+ + +
+
+ + +
+
+
+ +