Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 62621bd28f | |||
| 49cd0faa5a | |||
| 476a0dec66 | |||
| ab6c73f0f8 | |||
| eaed5d3d58 | |||
| 95032ba86a |
@@ -10,6 +10,7 @@ import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
|||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -36,6 +37,8 @@ export default function LandingPage() {
|
|||||||
name: "Why Us", id: "#why-us"},
|
name: "Why Us", id: "#why-us"},
|
||||||
{
|
{
|
||||||
name: "Services", id: "#services"},
|
name: "Services", id: "#services"},
|
||||||
|
{
|
||||||
|
name: "Pricing", id: "#pricing"},
|
||||||
{
|
{
|
||||||
name: "Metrics", id: "#metrics"},
|
name: "Metrics", id: "#metrics"},
|
||||||
{
|
{
|
||||||
@@ -150,6 +153,38 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardFive
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Flexible Bookkeeping Packages for Every Business"
|
||||||
|
description="Choose the plan that best fits your business needs. All consultations require a 25% advance payment."
|
||||||
|
tag="Our Pricing"
|
||||||
|
tagAnimation="blur-reveal"
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "plan-basic", tag: "Start Small", price: "AED 750", period: "/month", description: "Ideal for freelancers & small businesses with minimal transactions.", button: { text: "Get Started", href: "#contact" },
|
||||||
|
featuresTitle: "Includes", features: [
|
||||||
|
"Monthly Transaction Recording", "Bank Reconciliation (1 account)", "Basic Financial Reports (P&L)", "Email Support"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "plan-standard", tag: "Growing Business", price: "AED 1,500", period: "/month", description: "Perfect for growing SMEs needing comprehensive financial management.", button: { text: "Choose Plan", href: "#contact" },
|
||||||
|
featuresTitle: "Everything in Basic, plus", features: [
|
||||||
|
"Up to 2 Bank Accounts", "VAT Record Management & Filing", "Detailed Financial Reports (P&L, BS)", "Dedicated Email & Phone Support", "Annual Budgeting Assistance"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "plan-premium", tag: "Enterprise Solutions", price: "AED 3,000", period: "/month", description: "For established businesses requiring full-service bookkeeping and advisory.", button: { text: "Contact Sales", href: "#contact" },
|
||||||
|
featuresTitle: "Everything in Standard, plus", features: [
|
||||||
|
"Unlimited Bank Accounts", "Accounts Payable & Receivable", "Advanced Financial Analysis", "Dedicated Account Manager", "Customized Advisory Services", "Payroll Processing (up to 10 employees)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardFourteen
|
<MetricCardFourteen
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -273,14 +308,14 @@ export default function LandingPage() {
|
|||||||
variant: "plain"}}
|
variant: "plain"}}
|
||||||
tag="Start Your Journey"
|
tag="Start Your Journey"
|
||||||
title="Book Your Free Consultation"
|
title="Book Your Free Consultation"
|
||||||
description="Take the first step towards streamlined finances. Complete the form below to connect with our experts and receive a personalized quote tailored to your business needs (Name, Business Name, Email, Phone Number, Services Required)."
|
description="Take the first step towards streamlined finances. Enter your email below to get started and receive a personalized quote tailored to your business needs."
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/office-desktop-with-laptop-analytics_23-2148174051.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/office-desktop-with-laptop-analytics_23-2148174051.jpg"
|
||||||
imageAlt="Business consultation meeting"
|
imageAlt="Business consultation meeting"
|
||||||
mediaAnimation="opacity"
|
mediaAnimation="opacity"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Your Email Address"
|
inputPlaceholder="Your Business Email"
|
||||||
buttonText="Request Consultation"
|
buttonText="Get Started"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -297,6 +332,8 @@ export default function LandingPage() {
|
|||||||
label: "Financial Reporting", href: "#services"},
|
label: "Financial Reporting", href: "#services"},
|
||||||
{
|
{
|
||||||
label: "Payroll Assistance", href: "#services"},
|
label: "Payroll Assistance", href: "#services"},
|
||||||
|
{
|
||||||
|
label: "Pricing", href: "#pricing"}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user