diff --git a/src/app/page.tsx b/src/app/page.tsx index 2f8bdfa..a7ca007 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { { name: "Home", id: "home"}, { - name: "Services", id: "services"}, + name: "Services", id: "/services"}, { name: "Pricing", id: "pricing"}, { @@ -56,7 +56,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" @@ -225,4 +225,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..8064204 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,72 @@ +"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"; + +export default function ServicesPage() { + 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 ( + + + + +
+ ({ ...s, buttonIcon: s.buttonIcon }))} + textboxLayout="split" + useInvertedBackground={false} + /> +
+ + +
+
+ ); +}