Skip to content

Commit 8081ec3

Browse files
committed
fix: Integrations
1 parent b283191 commit 8081ec3

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

apps/dashboard/app/(main)/revenue/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default function RevenuePage() {
130130
</Button>
131131
<Button asChild size="sm" variant="outline">
132132
<Link
133-
href="https://docs.databuddy.cc/docs/integrations/stripe"
133+
href="https://docs.databuddy.cc/docs/Integrations/stripe"
134134
rel="noopener noreferrer"
135135
target="_blank"
136136
>

apps/dashboard/app/(main)/websites/[id]/revenue/_components/empty-states.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function NoRevenueData({ websiteName }: NoRevenueDataProps) {
7474
</div>
7575
<Button asChild variant="outline">
7676
<a
77-
href="https://docs.databuddy.cc/docs/integrations/stripe"
77+
href="https://docs.databuddy.cc/docs/Integrations/stripe"
7878
rel="noopener noreferrer"
7979
target="_blank"
8080
>

apps/docs/components/docs-footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function DocsFooter() {
6767
<li>
6868
<Link
6969
className="text-muted-foreground hover:text-foreground"
70-
href="/docs/integrations"
70+
href="/docs/Integrations"
7171
>
7272
Integrations
7373
</Link>

apps/docs/components/sidebar-content.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,37 +84,37 @@ export const contents: SidebarSection[] = [
8484
list: [
8585
{
8686
title: 'React',
87-
href: '/docs/integrations/react',
87+
href: '/docs/Integrations/react',
8888
icon: AtomIcon,
8989
},
9090
{
9191
title: 'Next.js',
92-
href: '/docs/integrations/nextjs',
92+
href: '/docs/Integrations/nextjs',
9393
icon: LightningIcon,
9494
},
9595
{
9696
title: 'WordPress',
97-
href: '/docs/integrations/wordpress',
97+
href: '/docs/Integrations/wordpress',
9898
icon: GlobeIcon,
9999
},
100100
{
101101
title: 'Shopify',
102-
href: '/docs/integrations/shopify',
102+
href: '/docs/Integrations/shopify',
103103
icon: ShoppingCartIcon,
104104
},
105105
{
106106
title: 'Stripe',
107-
href: '/docs/integrations/stripe',
107+
href: '/docs/Integrations/stripe',
108108
icon: CreditCardIcon,
109109
},
110110
{
111111
title: 'Framer',
112-
href: '/docs/integrations/framer',
112+
href: '/docs/Integrations/framer',
113113
icon: PaletteIcon,
114114
},
115115
{
116116
title: 'Google Tag Manager',
117-
href: '/docs/integrations/gtm',
117+
href: '/docs/Integrations/gtm',
118118
icon: GoogleLogoIcon,
119119
},
120120
],

apps/docs/content/docs/Integrations/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "integrations",
2+
"title": "Integrations",
33
"description": "Add Databuddy to your favorite platforms",
44
"icon": "Plug",
55
"pages": [

apps/docs/content/docs/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Databuddy provides powerful website analytics while respecting user privacy. Get
2525
<Card title="Real-Time Data" href="/docs/dashboard">
2626
Live dashboards with accurate, unsampled data.
2727
</Card>
28-
<Card title="Easy Setup" href="/docs/integrations">
28+
<Card title="Easy Setup" href="/docs/Integrations">
2929
Next.js, React, WordPress, Shopify. Install in minutes.
3030
</Card>
3131
</Cards>
@@ -73,16 +73,16 @@ Databuddy provides powerful website analytics while respecting user privacy. Get
7373
## Platform Integrations
7474

7575
<Cards>
76-
<Card title="React" href="/docs/integrations/react">
76+
<Card title="React" href="/docs/Integrations/react">
7777
TypeScript support with React hooks and components.
7878
</Card>
79-
<Card title="Next.js" href="/docs/integrations/nextjs">
79+
<Card title="Next.js" href="/docs/Integrations/nextjs">
8080
App Router and Pages Router with automatic route tracking.
8181
</Card>
82-
<Card title="WordPress" href="/docs/integrations/wordpress">
82+
<Card title="WordPress" href="/docs/Integrations/wordpress">
8383
Plugin installation and manual setup options.
8484
</Card>
85-
<Card title="Shopify" href="/docs/integrations/shopify">
85+
<Card title="Shopify" href="/docs/Integrations/shopify">
8686
E‑commerce tracking with purchase analytics.
8787
</Card>
8888
</Cards>

apps/docs/content/docs/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"sdk",
1212
"api",
1313
"api-keys",
14-
"integrations",
14+
"Integrations",
1515
"---Dashboard & Analytics---",
1616
"dashboard",
1717
"api",

apps/docs/content/docs/sdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ window.db?.track("test_event", { source: "console" });
499499
<Card title="Getting Started" href="/docs/getting-started" icon="🚀">
500500
Quick setup guide and basic configuration
501501
</Card>
502-
<Card title="Integration Guides" href="/docs/integrations" icon="⚙️">
502+
<Card title="Integration Guides" href="/docs/Integrations" icon="⚙️">
503503
Custom events, performance monitoring, and advanced features
504504
</Card>
505505
<Card title="Dashboard Guide" href="/docs/dashboard" icon="📊">

apps/docs/lib/sitemap-generator.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ const priorityRules = [
1515
{ pattern: '/sdk', priority: 0.9 },
1616
{ pattern: '/compliance/gdpr', priority: 0.85 },
1717
{ pattern: '/performance/core-web-vitals', priority: 0.85 },
18-
{ pattern: '/integrations/react', priority: 0.8 },
19-
{ pattern: '/integrations/nextjs', priority: 0.8 },
18+
{ pattern: '/Integrations/react', priority: 0.8 },
19+
{ pattern: '/Integrations/nextjs', priority: 0.8 },
2020
{ pattern: '/dashboard', priority: 0.8 },
2121
{ pattern: '/security', priority: 0.8 },
2222
{ pattern: '/contributors', priority: 0.8 },
2323
{ pattern: '/pricing', priority: 0.8 },
24-
{ pattern: '/integrations/', priority: 0.7 },
24+
{ pattern: '/Integrations/', priority: 0.7 },
2525
{ pattern: '/blog', priority: 0.7 },
2626
{ pattern: '/api', priority: 0.7 },
2727
{ pattern: '/roadmap', priority: 0.6 },

0 commit comments

Comments
 (0)