change title block for my-content page

This commit is contained in:
smanylov
2026-02-03 11:49:40 +07:00
parent 8d10aa77c8
commit 1ee55f503d
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "no-copy-frontend", "name": "no-copy-frontend",
"version": "0.27.0", "version": "0.28.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 2999", "dev": "next dev -p 2999",
+2 -2
View File
@@ -1,13 +1,13 @@
import MyContentInfoBlock from '@/app/ui/my-content/my-content-info-block'; import MyContentInfoBlock from '@/app/ui/my-content/my-content-info-block';
import FilesTable from '@/app/ui/dashboard/files-table'; import FilesTable from '@/app/ui/dashboard/files-table';
import MyContentPieChart from '@/app/ui/my-content/my-content-pie-chart'; import MyContentPieChart from '@/app/ui/my-content/my-content-pie-chart';
import MyContentPageTitleColorFrame from '@/app/ui/my-content/new/my-content-page-title';
import MyContentStatsOverview from '@/app/ui/my-content/new/my-content-stats-overview'; import MyContentStatsOverview from '@/app/ui/my-content/new/my-content-stats-overview';
import PageTitleColorFrame from '@/app/ui/page-title-color-frame';
export default function Page() { export default function Page() {
return ( return (
<> <>
<MyContentPageTitleColorFrame title="my-content" description="my-content-description" /> <PageTitleColorFrame title="my-content" description="my-content-description"/>
<MyContentStatsOverview /> <MyContentStatsOverview />
{/* <div className="split-blocks"> {/* <div className="split-blocks">
<MyContentInfoBlock /> <MyContentInfoBlock />
@@ -1,3 +1,4 @@
//removed
'use client' 'use client'
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';