We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b283191 commit 8081ec3Copy full SHA for 8081ec3
apps/dashboard/app/(main)/revenue/page.tsx
@@ -130,7 +130,7 @@ export default function RevenuePage() {
130
</Button>
131
<Button asChild size="sm" variant="outline">
132
<Link
133
- href="https://docs.databuddy.cc/docs/integrations/stripe"
+ href="https://docs.databuddy.cc/docs/Integrations/stripe"
134
rel="noopener noreferrer"
135
target="_blank"
136
>
apps/dashboard/app/(main)/websites/[id]/revenue/_components/empty-states.tsx
@@ -74,7 +74,7 @@ export function NoRevenueData({ websiteName }: NoRevenueDataProps) {
74
</div>
75
<Button asChild variant="outline">
76
<a
77
78
79
80
apps/docs/components/docs-footer.tsx
@@ -67,7 +67,7 @@ export function DocsFooter() {
67
<li>
68
69
className="text-muted-foreground hover:text-foreground"
70
- href="/docs/integrations"
+ href="/docs/Integrations"
71
72
Integrations
73
</Link>
apps/docs/components/sidebar-content.tsx
@@ -84,37 +84,37 @@ export const contents: SidebarSection[] = [
84
list: [
85
{
86
title: 'React',
87
- href: '/docs/integrations/react',
+ href: '/docs/Integrations/react',
88
icon: AtomIcon,
89
},
90
91
title: 'Next.js',
92
- href: '/docs/integrations/nextjs',
+ href: '/docs/Integrations/nextjs',
93
icon: LightningIcon,
94
95
96
title: 'WordPress',
97
- href: '/docs/integrations/wordpress',
+ href: '/docs/Integrations/wordpress',
98
icon: GlobeIcon,
99
100
101
title: 'Shopify',
102
- href: '/docs/integrations/shopify',
+ href: '/docs/Integrations/shopify',
103
icon: ShoppingCartIcon,
104
105
106
title: 'Stripe',
107
- href: '/docs/integrations/stripe',
+ href: '/docs/Integrations/stripe',
108
icon: CreditCardIcon,
109
110
111
title: 'Framer',
112
- href: '/docs/integrations/framer',
+ href: '/docs/Integrations/framer',
113
icon: PaletteIcon,
114
115
116
title: 'Google Tag Manager',
117
- href: '/docs/integrations/gtm',
+ href: '/docs/Integrations/gtm',
118
icon: GoogleLogoIcon,
119
120
],
apps/docs/content/docs/Integrations/meta.json
@@ -1,5 +1,5 @@
1
2
- "title": "integrations",
+ "title": "Integrations",
3
"description": "Add Databuddy to your favorite platforms",
4
"icon": "Plug",
5
"pages": [
apps/docs/content/docs/index.mdx
@@ -25,7 +25,7 @@ Databuddy provides powerful website analytics while respecting user privacy. Get
25
<Card title="Real-Time Data" href="/docs/dashboard">
26
Live dashboards with accurate, unsampled data.
27
</Card>
28
- <Card title="Easy Setup" href="/docs/integrations">
+ <Card title="Easy Setup" href="/docs/Integrations">
29
Next.js, React, WordPress, Shopify. Install in minutes.
30
31
</Cards>
@@ -73,16 +73,16 @@ Databuddy provides powerful website analytics while respecting user privacy. Get
## Platform Integrations
<Cards>
- <Card title="React" href="/docs/integrations/react">
+ <Card title="React" href="/docs/Integrations/react">
TypeScript support with React hooks and components.
- <Card title="Next.js" href="/docs/integrations/nextjs">
+ <Card title="Next.js" href="/docs/Integrations/nextjs">
App Router and Pages Router with automatic route tracking.
81
82
- <Card title="WordPress" href="/docs/integrations/wordpress">
+ <Card title="WordPress" href="/docs/Integrations/wordpress">
83
Plugin installation and manual setup options.
- <Card title="Shopify" href="/docs/integrations/shopify">
+ <Card title="Shopify" href="/docs/Integrations/shopify">
E‑commerce tracking with purchase analytics.
apps/docs/content/docs/meta.json
@@ -11,7 +11,7 @@
11
"sdk",
12
"api",
13
"api-keys",
14
- "integrations",
+ "Integrations",
15
"---Dashboard & Analytics---",
16
"dashboard",
17
apps/docs/content/docs/sdk.mdx
@@ -499,7 +499,7 @@ window.db?.track("test_event", { source: "console" });
499
<Card title="Getting Started" href="/docs/getting-started" icon="🚀">
500
Quick setup guide and basic configuration
501
502
- <Card title="Integration Guides" href="/docs/integrations" icon="⚙️">
+ <Card title="Integration Guides" href="/docs/Integrations" icon="⚙️">
503
Custom events, performance monitoring, and advanced features
504
505
<Card title="Dashboard Guide" href="/docs/dashboard" icon="📊">
apps/docs/lib/sitemap-generator.ts
@@ -15,13 +15,13 @@ const priorityRules = [
{ pattern: '/sdk', priority: 0.9 },
{ pattern: '/compliance/gdpr', priority: 0.85 },
{ pattern: '/performance/core-web-vitals', priority: 0.85 },
18
- { pattern: '/integrations/react', priority: 0.8 },
19
- { pattern: '/integrations/nextjs', priority: 0.8 },
+ { pattern: '/Integrations/react', priority: 0.8 },
+ { pattern: '/Integrations/nextjs', priority: 0.8 },
20
{ pattern: '/dashboard', priority: 0.8 },
21
{ pattern: '/security', priority: 0.8 },
22
{ pattern: '/contributors', priority: 0.8 },
23
{ pattern: '/pricing', priority: 0.8 },
24
- { pattern: '/integrations/', priority: 0.7 },
+ { pattern: '/Integrations/', priority: 0.7 },
{ pattern: '/blog', priority: 0.7 },
{ pattern: '/api', priority: 0.7 },
{ pattern: '/roadmap', priority: 0.6 },
0 commit comments