final: sync production version

This commit is contained in:
root
2026-07-08 06:48:44 +03:30
parent aae7a68cda
commit d982a8852a
81 changed files with 4274 additions and 4253 deletions

View File

@@ -1,6 +1,6 @@
/*@typescript-eslint/no-explicit-any*/
import { IMAGE_BASE_URL } from "@/components/main/BaseUrl";
import { IMAGE_BASE_URL, buildStorageUrl } from "@/components/main/BaseUrl";
import Head from "next/head";
type SEOProps = {
@@ -24,7 +24,7 @@ const SEO: React.FC<SEOProps> = ({ type, data }) => {
case "user":
title = `${data.first_name} ${data.last_name} `;
description = `${data.bio} - ${data.user_name} - ${data.expertise}`;
image = `${IMAGE_BASE_URL}${data.profile_image}`;
image = buildStorageUrl(data.profile_image);
break;
case "billboard":