new featerus

This commit is contained in:
2024-08-25 18:09:56 +00:00
parent 4df61e0772
commit e535c347f9
11 changed files with 269 additions and 46 deletions

View File

@@ -0,0 +1,22 @@
import Link from "next/link";
import React from "react";
const navigation = () => {
return (
<div className="flex w-full bg-slate-500 py-2 mx-0 mr-0 mb-5">
<div className="container">
<div className="flex justify-start gap-2">
<Link href="/console">
<button className="btn">Console</button>
</Link>
<Link href="/files">
<button className="btn">Files</button>
</Link>
<button className="btn">Etc</button>
</div>
</div>
</div>
);
};
export default navigation;