Compare commits
42 Commits
version_14
...
version_31
| Author | SHA1 | Date | |
|---|---|---|---|
| 87db38b75f | |||
| fecc30a378 | |||
| 5f0630f460 | |||
| 5ae67bad71 | |||
| 52fe13af58 | |||
| b55c7065b5 | |||
| 0f5cb2cbb2 | |||
| 9de366a099 | |||
| 976fe0cdd5 | |||
| 4e1f46f9e4 | |||
| bf8b6d5c30 | |||
| a6d6b9a7a2 | |||
| f02003c678 | |||
| b411b704a4 | |||
| c242899b8d | |||
| 3469edd626 | |||
| a9ee13c339 | |||
| 5ee9ecdc83 | |||
| c2822c8020 | |||
| 9ef3d0efc7 | |||
| 42b8fb8f28 | |||
| 91e0a08712 | |||
| edb2b9f862 | |||
| 2002415795 | |||
| 8f0a49bf4d | |||
| 11669f5eea | |||
| 5756d5814e | |||
| b678943b06 | |||
| 8fb2debdf5 | |||
| 722f0654dd | |||
| 20b5a922d6 | |||
| a17758c478 | |||
| 09fd6f4ed4 | |||
| eaa051e11b | |||
| 1a5edf1add | |||
| bcac8b272a | |||
| e74a806c66 | |||
| 0a736ff61f | |||
| f89f35007e | |||
| cfc43a0862 | |||
| f4317f3c0c | |||
| d9ca5964fd |
@@ -5,11 +5,11 @@ import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Building2, Globe, Utensils } from "lucide-react";
|
||||
@@ -30,18 +30,17 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", id: "about"},
|
||||
{ name: "Services", id: "services"},
|
||||
{ name: "Why MCG", id: "difference"},
|
||||
{ name: "Industries", id: "industries"},
|
||||
{ name: "Process", id: "process"},
|
||||
{ name: "Contact", id: "contact"},
|
||||
]}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJIeKqO7zvo0s4wbiXzT3hoGtU/uploaded-1779127012413-b6g19ocl.png"
|
||||
logoAlt="MCG Merchant Services Logo"
|
||||
brandName="MCG Merchant Services"
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
className="bg-[#020617] px-4 md:px-8"
|
||||
logoClassName="h-24 w-auto scale-150 origin-left mr-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -84,15 +83,15 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardThree
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Credit Card Processing", price: "Flagship", imageSrc: "https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&q=80&w=800"},
|
||||
{ id: "p2", name: "Business Loans and Lines of Credit", price: "Custom", imageSrc: "https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=800"},
|
||||
{ id: "p3", name: "POS Solutions", price: "Modern", imageSrc: "https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&q=80&w=800"},
|
||||
{ id: "p1", brand: "MCG", name: "Credit Card Processing", price: "Custom", rating: 5, reviewCount: "150+", imageSrc: "https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&q=80&w=800"},
|
||||
{ id: "p2", brand: "MCG", name: "Business Loans and Lines of Credit", price: "Custom", rating: 5, reviewCount: "80+", imageSrc: "https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=800"},
|
||||
{ id: "p3", brand: "MCG", name: "POS Solutions", price: "Custom", rating: 5, reviewCount: "200+", imageSrc: "https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&q=80&w=800"},
|
||||
]}
|
||||
title="Built for Modern Merchants"
|
||||
description="Our core solutions designed to scale with your business."
|
||||
@@ -123,8 +122,6 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="Industries We Power"
|
||||
description="Trusted by businesses across various sectors."
|
||||
metricTitleClassName="text-sm md:text-base"
|
||||
valueClassName="text-base md:text-lg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -169,29 +166,13 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJIeKqO7zvo0s4wbiXzT3hoGtU/uploaded-1779128537596-ac8jibq5.png"
|
||||
imageAlt="MCG Merchant Services Logo"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJIeKqO7zvo0s4wbiXzT3hoGtU/uploaded-1779128537596-ac8jibq5.png"
|
||||
logoAlt="MCG Merchant Services Logo"
|
||||
<FooterLogoEmphasis
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJIeKqO7zvo0s4wbiXzT3hoGtU/uploaded-1779131050506-0utjqe19.png"
|
||||
logoText="MCG Merchant Services"
|
||||
logoClassName="brightness-200 contrast-150 saturate-200 text-white invert-0 hue-rotate-180"
|
||||
logoTextClassName="text-white font-bold"
|
||||
columns={[
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Privacy Policy", href: "#"},
|
||||
{ label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "516.658.7646", href: "tel:5166587646"},
|
||||
{ label: "info@mcgmerchantservices.com", href: "mailto:info@mcgmerchantservices.com"},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 | MCG Merchant Services Inc. All rights reserved."
|
||||
className="bg-[#000612] text-white"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user