new featerus
This commit is contained in:
13
app/app/files/page.tsx
Normal file
13
app/app/files/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import FilesEdit from "@/components/FilesEditor";
|
||||
import ConsoleNavigation from "@/components/ConsoleNavigation";
|
||||
|
||||
export default function Files() {
|
||||
return (
|
||||
<>
|
||||
<ConsoleNavigation />
|
||||
<section className="container mx-auto">
|
||||
<FilesEdit />
|
||||
</section>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -17,10 +17,10 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
<header className="py-4">
|
||||
<header>
|
||||
<h1 className="text-4xl font-bold"></h1>
|
||||
</header>
|
||||
<div className="container">{children}</div>
|
||||
<div id="container">{children}</div>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user