feat: split big file and update agents.md

This commit is contained in:
2026-06-18 23:19:54 +03:00
parent 2bda5be2cd
commit 4c315e77e9
25 changed files with 936 additions and 865 deletions

View File

@@ -1,6 +1,6 @@
"use client";
import { AnalyticsWorkspace } from "@/widgets/template-ui";
import { AnalyticsWorkspace } from "@/widgets/analytics-workspace";
export default function Page() {
return <AnalyticsWorkspace />;

View File

@@ -1,6 +1,6 @@
"use client";
import { OpsDashboard } from "@/widgets/template-ui";
import { OpsDashboard } from "@/widgets/ops-dashboard";
export default function Page() {
return <OpsDashboard />;

View File

@@ -3,7 +3,7 @@ import { IBM_Plex_Mono, Inter } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "@/shared/hooks/theme-provider";
import { ThemeMessageListener } from "@/shared/hooks/theme-message-listener";
import { SiteHeader, SiteFooter } from "@/widgets/template-ui";
import { SiteHeader, SiteFooter } from "@/widgets/site-shell";
const mono = IBM_Plex_Mono({
variable: "--font-display",

View File

@@ -1,6 +1,6 @@
"use client";
import { OpsDashboard } from "@/widgets/template-ui";
import { OpsDashboard } from "@/widgets/ops-dashboard";
export default function Page() {
return <OpsDashboard />;

View File

@@ -1,6 +1,6 @@
"use client";
import { ReturnsWorkspace } from "@/widgets/template-ui";
import { ReturnsWorkspace } from "@/widgets/returns-workspace";
export default function Page() {
return <ReturnsWorkspace />;

View File

@@ -1,6 +1,6 @@
"use client";
import { RoutesWorkspace } from "@/widgets/template-ui";
import { RoutesWorkspace } from "@/widgets/routes-workspace";
export default function Page() {
return <RoutesWorkspace />;

View File

@@ -1,6 +1,6 @@
"use client";
import { SettingsWorkspace } from "@/widgets/template-ui";
import { SettingsWorkspace } from "@/widgets/settings-workspace";
export default function Page() {
return <SettingsWorkspace />;

View File

@@ -1,6 +1,6 @@
"use client";
import { ShipmentControl } from "@/widgets/template-ui";
import { ShipmentControl } from "@/widgets/shipment-control";
export default function Page() {
return <ShipmentControl />;