Skip to content

Commit e7462dc

Browse files
committed
fix: links
1 parent 20629f9 commit e7462dc

File tree

5 files changed

+11
-35
lines changed

5 files changed

+11
-35
lines changed

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/integrations/stripe"
77+
href="https://docs.databuddy.cc/docs/Integrations/stripe"
7878
rel="noopener noreferrer"
7979
target="_blank"
8080
>

apps/docs/content/docs/api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ curl -H "X-Api-Key: YOUR_API_KEY" \
2424
https://api.databuddy.cc/v1/query
2525
```
2626

27-
Get your API key from your [dashboard settings](https://app.databuddy.cc/settings/api). Learn more about scopes and resource access on the [API Keys](../api-keys) page.
27+
Get your API key from your [dashboard settings](https://app.databuddy.cc/settings/api). Learn more about scopes and resource access on the [API Keys](/docs/api-keys) page.
2828

2929
<Callout type="tip">
3030
**Test your API key** instantly in the [API Playground](/api) - no need to

apps/docs/content/docs/getting-started.mdx

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,14 @@ import { Card, Cards } from "fumadocs-ui/components/card";
1212

1313
This guide will help you set up Databuddy analytics in your application in just a few minutes.
1414

15-
<Callout type="info">
16-
**Prerequisites**: You'll need a verified domain before you can create a
17-
project. [Verify your domain first](/docs/domain-verification) if you haven't
18-
already.
19-
</Callout>
20-
2115
<Steps>
2216
<Step>
2317

2418
## Create Your Account
2519

2620
1. Go to [app.databuddy.cc](https://app.databuddy.cc)
2721
2. Sign up for a free account
28-
3. Create your first project with your verified domain
29-
4. Copy your **Client ID** from the dashboard
30-
31-
<Callout type="warn">
32-
Make sure your domain is verified before creating a project. Unverified
33-
domains cannot track analytics data.
34-
</Callout>
22+
3. Copy your **Client ID** from the dashboard
3523

3624
</Step>
3725
<Step>
@@ -407,10 +395,9 @@ function SignupForm() {
407395
**Not seeing data in your dashboard?**
408396

409397
1. **Check your Client ID** - Make sure it matches your project
410-
2. **Verify your domain** - Ensure your domain is verified in the dashboard
411-
3. **Test manually** - Try `db.track('test', {})` in your browser console
412-
4. **Check Network tab** - Look for requests to `basket.databuddy.cc`
413-
5. **Review environment** - Make sure tracking isn't disabled in production
398+
2. **Test manually** - Try `db.track('test', {})` in your browser console
399+
3. **Check Network tab** - Look for requests to `basket.databuddy.cc`
400+
4. **Review environment** - Make sure tracking isn't disabled in production
414401

415402
<Callout type="info">
416403
Need help? Join our [Discord community](https://discord.gg/JTk7a38tCZ) or

apps/docs/content/docs/index.mdx

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

7676
<Cards>
77-
<Card title="React" href="/docs/integrations/react">
77+
<Card title="React" href="/docs/Integrations/react">
7878
TypeScript support with React hooks and components.
7979
</Card>
80-
<Card title="Next.js" href="/docs/integrations/nextjs">
80+
<Card title="Next.js" href="/docs/Integrations/nextjs">
8181
App Router and Pages Router with automatic route tracking.
8282
</Card>
83-
<Card title="WordPress" href="/docs/integrations/wordpress">
83+
<Card title="WordPress" href="/docs/Integrations/wordpress">
8484
Plugin installation and manual setup options.
8585
</Card>
86-
<Card title="Shopify" href="/docs/integrations/shopify">
86+
<Card title="Shopify" href="/docs/Integrations/shopify">
8787
E‑commerce tracking with purchase analytics.
8888
</Card>
8989
</Cards>

apps/docs/lib/sitemap-generator.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const priorityMap: Record<string, number> = {
1414
'/docs/comparisons/databuddy-vs-google-analytics': 0.95,
1515
'/docs/compliance/gdpr-compliance-guide': 0.9,
1616
'/docs/performance/core-web-vitals-guide': 0.85,
17-
'/docs/domain-verification': 0.8,
1817
'/docs/dashboard': 0.8,
1918
'/docs/security': 0.8,
2019
'/docs/Integrations': 0.8,
@@ -23,7 +22,6 @@ const priorityMap: Record<string, number> = {
2322
'/api': 0.7,
2423
'/contributors': 0.8,
2524
'/privacy': 0.5,
26-
'/demo': 0.6,
2725
'/llms.txt': 0.4,
2826
};
2927

@@ -35,7 +33,6 @@ const changeFrequencyMap: Record<string, 'weekly' | 'monthly' | 'yearly'> = {
3533
'/docs/comparisons/databuddy-vs-google-analytics': 'monthly',
3634
'/docs/compliance/gdpr-compliance-guide': 'monthly',
3735
'/docs/performance/core-web-vitals-guide': 'monthly',
38-
'/docs/domain-verification': 'monthly',
3936
'/docs/dashboard': 'weekly',
4037
'/docs/security': 'monthly',
4138
'/docs/Integrations': 'weekly',
@@ -44,7 +41,6 @@ const changeFrequencyMap: Record<string, 'weekly' | 'monthly' | 'yearly'> = {
4441
'/api': 'monthly',
4542
'/contributors': 'monthly',
4643
'/privacy': 'yearly',
47-
'/demo': 'monthly',
4844
'/llms.txt': 'weekly',
4945
};
5046

@@ -132,11 +128,6 @@ function getFallbackEntries(): Array<{
132128
{ url: '/docs', priority: 1.0, changeFrequency: 'weekly' },
133129
{ url: '/docs/getting-started', priority: 0.9, changeFrequency: 'weekly' },
134130
{ url: '/docs/sdk', priority: 0.9, changeFrequency: 'weekly' },
135-
{
136-
url: '/docs/domain-verification',
137-
priority: 0.8,
138-
changeFrequency: 'monthly',
139-
},
140131
{ url: '/docs/dashboard', priority: 0.8, changeFrequency: 'weekly' },
141132
{ url: '/docs/security', priority: 0.8, changeFrequency: 'monthly' },
142133
{ url: '/docs/api', priority: 0.7, changeFrequency: 'monthly' },
@@ -173,7 +164,6 @@ function getFallbackEntries(): Array<{
173164
},
174165
{ url: '/docs/Integrations/gtm', priority: 0.7, changeFrequency: 'weekly' },
175166
{ url: '/privacy', priority: 0.5, changeFrequency: 'yearly' },
176-
{ url: '/demo', priority: 0.6, changeFrequency: 'monthly' },
177167
{ url: '/llms.txt', priority: 0.4, changeFrequency: 'weekly' },
178168
];
179169
}
@@ -202,7 +192,6 @@ export async function generateSitemapEntries(): Promise<MetadataRoute.Sitemap> {
202192
const pages = source.getPages();
203193
const nonDocPages = [
204194
'/privacy',
205-
'/demo',
206195
'/llms.txt',
207196
'/contributors',
208197
'/api',

0 commit comments

Comments
 (0)