25 lines
589 B
TypeScript
25 lines
589 B
TypeScript
"use client";
|
|
|
|
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;
|