new featerus
This commit is contained in:
22
app/components/ConsoleNavigation/index.tsx
Normal file
22
app/components/ConsoleNavigation/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user