db connect

This commit is contained in:
2026-04-17 11:16:00 +03:00
parent b675fff437
commit 5a48605c35
25 changed files with 2607 additions and 298 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import { getProjects } from './actions';
import ProjectsClient from './ProjectsClient';
export default async function ProjectsManagementPage() {
const initialProjects = await getProjects();
return (
<div className="max-w-[1400px] mx-auto">
<ProjectsClient initialProjects={initialProjects} />
</div>
);
}