Skip to content

Commit

Permalink
added logic to handle page heading for faq items
Browse files Browse the repository at this point in the history
  • Loading branch information
tulsiojha committed Nov 15, 2024
1 parent 183b983 commit 7768000
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 12 deletions.
6 changes: 4 additions & 2 deletions pages/docs/faq/feature-capabilities.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq"
import consts from '~/app/utils/const';

# Features & Capabilities
export const t = consts.helpandsupport.kloudliteOverviewFaqs.featureCapabilities

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.featureCapabilities.items}/>
# {t.label}

<FaqDocList items={t.items}/>
6 changes: 4 additions & 2 deletions pages/docs/faq/general-questions.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq"
import consts from '~/app/utils/const';

# General Questions
export const t = consts.helpandsupport.kloudliteOverviewFaqs.general

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.general.items}/>
# {t.label}

<FaqDocList items={t.items}/>
6 changes: 4 additions & 2 deletions pages/docs/faq/onboarding.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq";
import consts from '~/app/utils/const';

# Onboarding
export const t = consts.helpandsupport.kloudliteOverviewFaqs.onboarding

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.onboarding.items} />
# {t.label}

<FaqDocList items={t.items} />
6 changes: 4 additions & 2 deletions pages/docs/faq/plans-pricing.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq"
import consts from '~/app/utils/const';

# Plans & Pricing
export const t = consts.helpandsupport.kloudliteOverviewFaqs.plansPricing

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.plansPricing.items}/>
# {t.label}

<FaqDocList items={t.items}/>
6 changes: 4 additions & 2 deletions pages/docs/faq/setup-configuration.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq"
import consts from '~/app/utils/const';

# Setup & Configuration
export const t = consts.helpandsupport.kloudliteOverviewFaqs.setupConfiguration

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.setupConfiguration.items}/>
# {t.label}

<FaqDocList items={t.items}/>
6 changes: 4 additions & 2 deletions pages/docs/faq/troubleshooting-support.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { FaqDocList } from "~/app/components/faq"
import consts from '~/app/utils/const';

# Troubleshooting & Support
export const t = consts.helpandsupport.kloudliteOverviewFaqs.troubleshootingSupport

<FaqDocList items={consts.helpandsupport.kloudliteOverviewFaqs.troubleshootingSupport.items}/>
# {t.label}

<FaqDocList items={t.items}/>

0 comments on commit 7768000

Please sign in to comment.