Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -2,13 +2,35 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import { Sparkles } from "lucide-react";
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { User, Briefcase, Rocket } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
const navItems = [
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "Services", id: "/services"
|
||||
},
|
||||
{
|
||||
name: "Pricing", id: "/pricing"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "FAQ", id: "/faq"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "/contact"
|
||||
}
|
||||
];
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -23,178 +45,142 @@ export default function LandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "pricing",
|
||||
href: "/pricing",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="RGM Tech Point Solutions"
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "/register",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={navItems}
|
||||
brandName="RGM Tech Point Solutions"
|
||||
button={{
|
||||
text: "Get Started", href: "/register"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "1",
|
||||
tag: "Starter",
|
||||
price: "$49",
|
||||
period: "/month",
|
||||
description: "Ideal for new businesses needing basic compliance and initial setup.",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"1 Business Registration",
|
||||
"Basic IT Setup Support",
|
||||
"Standard User Portal Access",
|
||||
"Email Support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
tag: "Professional",
|
||||
tagIcon: Sparkles,
|
||||
price: "$99",
|
||||
period: "/month",
|
||||
description: "Comprehensive solution for growing businesses requiring continuous support.",
|
||||
button: {
|
||||
text: "Choose Plan",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Everything in Starter, plus:",
|
||||
features: [
|
||||
"Up to 3 Registrations Annually",
|
||||
"Advanced IT Support",
|
||||
"Priority User Portal Features",
|
||||
"Phone & Chat Support",
|
||||
"Compliance Reminders",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
tag: "Enterprise",
|
||||
price: "Custom",
|
||||
period: "/month",
|
||||
description: "Tailored services for large organizations with complex IT and regulatory demands.",
|
||||
button: {
|
||||
text: "Contact Sales",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Everything in Professional, plus:",
|
||||
features: [
|
||||
"Unlimited Registrations",
|
||||
"Dedicated Account Manager",
|
||||
"24/7 Premium IT Support",
|
||||
"On-site Assistance Options",
|
||||
"Custom Integrations",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Flexible Plans for Every Business Need"
|
||||
description="Choose the perfect plan that scales with your business, from essential registrations to comprehensive IT management."
|
||||
tag="Transparent Pricing"
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardTwo
|
||||
title="Transparent Pricing for Every Business Need"
|
||||
description="Choose the service package that best fits your business requirements, from individual registrations to comprehensive compliance solutions, without hidden fees."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic", badge: "Individual", badgeIcon: User,
|
||||
price: "$99", subtitle: "Essential for single service needs", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "/register"
|
||||
}
|
||||
],
|
||||
features: [
|
||||
"One-time service registration", "Email support", "Client-side validation", "Application ID generation", "Basic profile management"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "standard", badge: "Business Starter", badgeIcon: Briefcase,
|
||||
price: "$249", subtitle: "Ideal for growing businesses", buttons: [
|
||||
{
|
||||
text: "Choose Plan", href: "/register"
|
||||
}
|
||||
],
|
||||
features: [
|
||||
"Up to 3 service registrations", "Priority email support", "Real-time application tracking", "Email & WhatsApp notifications", "Advanced profile management"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "premium", badge: "Enterprise", badgeIcon: Rocket,
|
||||
price: "$499", subtitle: "Comprehensive for large operations", buttons: [
|
||||
{
|
||||
text: "Contact Sales", href: "/contact"
|
||||
}
|
||||
],
|
||||
features: [
|
||||
"Unlimited service registrations", "24/7 dedicated support", "Full admin portal access", "Customizable notifications", "Advanced analytics & reporting"
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Questions?"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to the most common queries about our services, registration process, and portal functionalities."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLvmbdcWNpdkOPdPmfYGxxZYLt/a-modern-abstract-illustration-of-a-cust-1774281417951-ba7e5aea.png"
|
||||
imageAlt="Abstract illustration of customer support"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
faqsAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What services does RGM Tech Point Solutions offer?", content: "We offer comprehensive IT support and various business registration services including GST, MSME, FSSAI, TRADEMARK, and Import & Export licenses, all managed through our integrated portals."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How do I register for a new service?", content: "You can register directly through our Registration Form Module. Simply fill in your details, select the required services, upload documents, and complete email OTP verification. Your unique Application ID will be generated upon successful submission."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Can I track my application status in real-time?", content: "Yes, our User Portal Module provides real-time application tracking. You can view the status of all your submitted applications: Submitted, Under Review, Approved, or Rejected."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What kind of notifications will I receive?", content: "You'll receive automated email notifications for new registrations, application submissions, and all status updates. Additionally, we provide mandatory WhatsApp alerts for critical status changes."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Is my data secure with RGM Tech Point Solutions?", content: "Absolutely. We prioritize data security with secure login and session management, password hashing, CAPTCHA integration, role-based access control, and encryption for all sensitive data like PAN and Aadhaar numbers."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "/pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="RGM Tech Point Solutions"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch With Us"
|
||||
description="Have questions or need support regarding our IT solutions or registration services? Fill out the form below, and our dedicated team will get back to you promptly."
|
||||
useInvertedBackground={true}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLvmbdcWNpdkOPdPmfYGxxZYLt/a-diverse-group-of-it-support-profession-1774281418048-a7673715.png"
|
||||
imageAlt="IT support professionals working"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Send Message"
|
||||
inputs={[
|
||||
{ name: "fullName", type: "text", placeholder: "Your Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email Address", required: true },
|
||||
{ name: "mobileNumber", type: "tel", placeholder: "Your Mobile Number", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Your Message", rows: 4,
|
||||
required: false
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Pricing", href: "/pricing" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "FAQ", href: "/faq" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="RGM Tech Point Solutions"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user