12 Commits

Author SHA1 Message Date
59bcfd6556 Update src/app/page.tsx 2026-03-29 09:50:31 +00:00
1be36a3492 Merge version_6 into main
Merge version_6 into main
2026-03-29 09:49:15 +00:00
3a8db3e803 Update src/app/services/page.tsx 2026-03-29 09:49:09 +00:00
64ebede1d0 Update src/app/page.tsx 2026-03-29 09:49:08 +00:00
3ef9fcdf01 Merge version_5 into main
Merge version_5 into main
2026-03-28 15:09:39 +00:00
a44875dd45 Update src/app/page.tsx 2026-03-28 15:09:33 +00:00
e9d11e50a4 Merge version_4 into main
Merge version_4 into main
2026-03-28 15:06:06 +00:00
549cb96d66 Update src/app/page.tsx 2026-03-28 15:06:03 +00:00
3cfd2dbd00 Merge version_3 into main
Merge version_3 into main
2026-03-28 15:02:07 +00:00
baf1791dc2 Add src/app/services/page.tsx 2026-03-28 15:02:04 +00:00
61c351f1d8 Update src/app/page.tsx 2026-03-28 15:02:04 +00:00
56bea0eb34 Merge version_2 into main
Merge version_2 into main
2026-03-28 14:11:50 +00:00
2 changed files with 106 additions and 10 deletions

View File

@@ -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={{
@@ -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"},
],
@@ -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"},
],
},
{

84
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,84 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
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 },
{ title: "GST Registration", description: "Get your GSTIN quickly and efficiently.", buttonIcon: CreditCard },
{ title: "Trademark Filing", description: "Protect your brand identity from infringement.", buttonIcon: Award },
{ title: "Copyright Registration", description: "Legal protection for your creative works.", buttonIcon: FileSignature },
{ title: "MSME/Udyam Registration", description: "Benefit from government schemes for MSMEs.", buttonIcon: ShieldCheck },
{ title: "Tax Audit Support", description: "Professional guidance through tax filings.", buttonIcon: Banknote },
{ title: "Annual Compliances", description: "Stay compliant with mandatory ROC filings.", buttonIcon: Search },
];
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="large"
background="aurora"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/#pricing" },
{ name: "FAQ", id: "/#faq" },
]}
brandName="RegisterKaro"
button={{ text: "Consultation", href: "/#contact" }}
/>
</div>
<div className="pt-32 pb-20" id="services-list" data-section="services-list">
<FeatureCardTwentySix
title="Our Comprehensive Services"
description="Explore our curated list of 50+ business compliance and legal services tailored to your growth journey."
features={allServices.map(s => ({ ...s, buttonIcon: s.buttonIcon }))}
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "/#contact" }] },
{ items: [{ label: "GST", href: "#" }, { label: "Incorporation", href: "#" }] },
{ items: [{ label: "Privacy", href: "#" }, { label: "Disclaimer", href: "#" }] },
]}
logoText="RegisterKaro"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}