From 4323dd6916dda728f4cab1ffe7d32940a12c549c Mon Sep 17 00:00:00 2001 From: awe Date: Tue, 23 Sep 2025 15:24:40 +0300 Subject: [PATCH] test version for review --- frontend/src/app/contacts/page.tsx | 2 +- frontend/src/app/layout.tsx | 18 +++++---- frontend/src/app/page.tsx | 6 +-- frontend/src/app/projects/page.tsx | 2 +- frontend/src/app/publications/page.tsx | 6 +-- frontend/src/app/rid/page.tsx | 33 ++++++++++++++++ frontend/src/app/staff/page.tsx | 2 +- frontend/src/app/students/page.tsx | 46 +++++++++++++++++++++++ frontend/src/components/Sidebar.tsx | 44 ++++++++++++++++++++++ frontend/src/components/SidebarClient.tsx | 46 +++++++++++++++++++++++ 10 files changed, 189 insertions(+), 16 deletions(-) create mode 100644 frontend/src/app/rid/page.tsx create mode 100644 frontend/src/app/students/page.tsx create mode 100644 frontend/src/components/Sidebar.tsx create mode 100644 frontend/src/components/SidebarClient.tsx diff --git a/frontend/src/app/contacts/page.tsx b/frontend/src/app/contacts/page.tsx index ca1af54..aef5540 100644 --- a/frontend/src/app/contacts/page.tsx +++ b/frontend/src/app/contacts/page.tsx @@ -25,7 +25,7 @@ export default function ContactsPage() { }; return ( -
+

Контакты

diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index 6ec4790..4bf4172 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -1,7 +1,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; -import Header from "@/components/Header"; +import SidebarClient from "@/components/SidebarClient"; import Footer from "@/components/Footer"; const inter = Inter({ @@ -20,12 +20,16 @@ export default function RootLayout({ }>) { return ( - -

-
- {children} -
-