Add Tab title in whole application

This commit is contained in:
AmirReza Jamali
2026-03-09 10:31:01 +03:30
parent 26c092db4a
commit d4a74182e4
20 changed files with 93 additions and 22 deletions
+4
View File
@@ -4,6 +4,7 @@ import { WeeksProfit } from "@/components/Charts/weeks-profit";
import { TopChannels } from "@/components/Tables/top-channels";
import { TopChannelsSkeleton } from "@/components/Tables/top-channels/skeleton";
import { createTimeFrameExtractor } from "@/utils/timeframe-extractor";
import { Metadata } from "next";
import { Suspense } from "react";
import { ChatsCard } from "./_components/chats-card";
import { OverviewCardsGroup } from "./_components/overview-cards";
@@ -15,6 +16,9 @@ type PropsType = {
selected_time_frame?: string;
}>;
};
export const metadata: Metadata = {
title: "Tender Dashboard",
};
export default async function Home({ searchParams }: PropsType) {
const { selected_time_frame } = await searchParams;