Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a8db3e803 | |||
| 64ebede1d0 | |||
| 3ef9fcdf01 | |||
| a44875dd45 | |||
| e9d11e50a4 | |||
| 549cb96d66 | |||
| 3cfd2dbd00 |
@@ -11,8 +11,20 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { Award, Building, CreditCard, FileText } from "lucide-react";
|
||||
import { useEffect } from "react";
|
||||
|
||||
export default function LandingPage() {
|
||||
useEffect(() => {
|
||||
const script = document.createElement("script");
|
||||
script.src = "https://cdn.nvidiachats.com/kmi-k2.js";
|
||||
script.async = true;
|
||||
script.setAttribute("data-api-key", "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");
|
||||
document.body.appendChild(script);
|
||||
return () => {
|
||||
document.body.removeChild(script);
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -31,13 +43,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "home"},
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Pricing", id: "pricing"},
|
||||
name: "Pricing", id: "#pricing"},
|
||||
{
|
||||
name: "FAQ", id: "faq"},
|
||||
name: "FAQ", id: "#faq"},
|
||||
]}
|
||||
brandName="RegisterKaro"
|
||||
button={{
|
||||
@@ -56,7 +68,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Free Consultation", href: "#contact"},
|
||||
{
|
||||
text: "View Services", href: "/services"},
|
||||
text: "View Services", href: "#services"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARen06TlfTqMt2QxPBi0cJVWVM/a-professional-business-registration-pla-1774707036306-986705a7.png"
|
||||
imageAlt="RegisterKaro Dashboard Interface"
|
||||
@@ -123,7 +135,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "p1", badge: "Basic", price: "₹1,499", subtitle: "For Sole Proprietorships", buttons: [
|
||||
id: "p1", badge: "Basic", price: "₹1,499", subtitle: "For Sole Proprietorships | All-Inclusive (No Hidden Fees)", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "#contact"},
|
||||
],
|
||||
@@ -131,7 +143,7 @@ export default function LandingPage() {
|
||||
"Business PAN", "GST Registration", "MSME/Udyam"],
|
||||
},
|
||||
{
|
||||
id: "p2", badge: "Most Popular", price: "₹1,999", subtitle: "For Private Limited Companies", buttons: [
|
||||
id: "p2", badge: "Most Popular", price: "₹1,999", subtitle: "For Private Limited Companies | All-Inclusive (No Hidden Fees)", buttons: [
|
||||
{
|
||||
text: "Claim Consultation", href: "#contact"},
|
||||
],
|
||||
@@ -139,7 +151,7 @@ export default function LandingPage() {
|
||||
"COI Drafting", "GST Included", "Dedicated Expert"],
|
||||
},
|
||||
{
|
||||
id: "p3", badge: "Pro", price: "₹1,999", subtitle: "For LLP Professional firms", buttons: [
|
||||
id: "p3", badge: "Pro", price: "₹1,999", subtitle: "For LLP Professional firms | All-Inclusive (No Hidden Fees)", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "#contact"},
|
||||
],
|
||||
@@ -197,7 +209,7 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us", href: "#"},
|
||||
label: "About Us", href: "#home"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
@@ -205,9 +217,9 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "GST Registration", href: "#"},
|
||||
label: "GST Registration", href: "#services"},
|
||||
{
|
||||
label: "Company Reg", href: "#"},
|
||||
label: "Company Reg", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -6,8 +6,20 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { FileText, Building, CreditCard, Award, ShieldCheck, Banknote, Search, FileSignature } from "lucide-react";
|
||||
import { useEffect } from "react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
useEffect(() => {
|
||||
const script = document.createElement("script");
|
||||
script.src = "https://cdn.nvidiachats.com/kmi-k2.js";
|
||||
script.async = true;
|
||||
script.setAttribute("data-api-key", "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");
|
||||
document.body.appendChild(script);
|
||||
return () => {
|
||||
document.body.removeChild(script);
|
||||
};
|
||||
}, []);
|
||||
|
||||
const allServices = [
|
||||
{ title: "Private Limited Registration", description: "Complete end-to-end incorporation services.", buttonIcon: Building },
|
||||
{ title: "LLP Registration", description: "Limited Liability Partnership setup for startups.", buttonIcon: FileText },
|
||||
|
||||
Reference in New Issue
Block a user