mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-04-30 18:59:37 +00:00
Formated Files
This commit is contained in:
parent
d5631b309a
commit
e768d9181f
138 changed files with 1829 additions and 1851 deletions
|
@ -1,7 +1,7 @@
|
|||
import { Board } from "@prisma/client";
|
||||
import { Board } from '@prisma/client';
|
||||
|
||||
import { BoardTitleForm } from "./board-title-form";
|
||||
import { BoardOptions } from "./board-options";
|
||||
import { BoardTitleForm } from './board-title-form';
|
||||
import { BoardOptions } from './board-options';
|
||||
|
||||
interface BoardNavbarProps {
|
||||
data: Board;
|
||||
|
@ -9,9 +9,9 @@ interface BoardNavbarProps {
|
|||
|
||||
export const BoardNavbar = async ({ data }: BoardNavbarProps) => {
|
||||
return (
|
||||
<div className="w-full h-14 z-[40] bg-black/50 fixed top-14 flex items-center px-6 gap-x-4 text-white">
|
||||
<div className='fixed top-14 z-[40] flex h-14 w-full items-center gap-x-4 bg-black/50 px-6 text-white'>
|
||||
<BoardTitleForm data={data} />
|
||||
<div className="ml-auto">
|
||||
<div className='ml-auto'>
|
||||
<BoardOptions id={data.id} />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue