Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 14a62b74c3 | |||
| 59bcfd6556 | |||
| 1be36a3492 | |||
| 3a8db3e803 | |||
| 64ebede1d0 | |||
| 3ef9fcdf01 | |||
| a44875dd45 | |||
| e9d11e50a4 |
@@ -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"
|
||||
@@ -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 | No Hidden Fees | All-Inclusive", price: "₹1,499", subtitle: "For Sole Proprietorships", 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 | No Hidden Fees | All-Inclusive", price: "₹1,999", subtitle: "For Private Limited Companies", 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 | No Hidden Fees | All-Inclusive", price: "₹1,999", subtitle: "For LLP Professional firms", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "#contact"},
|
||||
],
|
||||
|
||||
@@ -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