Skip to content

Commit 852cfc5

Browse files
committed
fix(web): update branding from "vibed.app" to "vibe-coding-profiler.com"
- Replaced all instances of "vibed.app" with "vibe-coding-profiler.com" in the Open Graph API routes to reflect the new branding. - Ensured consistent application of the updated URL across relevant files for improved brand identity.
1 parent 6b68e45 commit 852cfc5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/web/src/app/api/og/analysis/[jobId]/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export async function GET(
8787
_request: NextRequest,
8888
{ params }: { params: Promise<{ jobId: string }> }
8989
) {
90-
const appUrl = process.env.NEXT_PUBLIC_APP_URL ?? "https://www.vibed.app";
90+
const appUrl = process.env.NEXT_PUBLIC_APP_URL ?? "https://www.vibe-coding-profiler.com";
9191
const supabase = await createSupabaseServerClient();
9292
const { jobId } = await params;
9393

@@ -354,7 +354,7 @@ export async function GET(
354354
opacity: 0.7,
355355
}}
356356
>
357-
vibed.app
357+
vibe-coding-profiler.com
358358
</p>
359359
</div>
360360
</div>

apps/web/src/app/api/og/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export async function GET() {
137137
opacity: 0.7,
138138
}}
139139
>
140-
vibed.app
140+
vibe-coding-profiler.com
141141
</p>
142142
</div>
143143
</div>

apps/web/src/app/api/share/story/[userId]/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ export async function GET(
560560
request: NextRequest,
561561
{ params }: { params: Promise<{ userId: string }> }
562562
) {
563-
const appUrl = process.env.NEXT_PUBLIC_APP_URL ?? "https://www.vibed.app";
563+
const appUrl = process.env.NEXT_PUBLIC_APP_URL ?? "https://www.vibe-coding-profiler.com";
564564
const supabase = await createSupabaseServerClient();
565565
const {
566566
data: { user },

0 commit comments

Comments
 (0)