Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions frontend/app/dashboard/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Dashboard",
};

export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
10 changes: 10 additions & 0 deletions frontend/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import "./globals.css";
import type { Metadata } from "next";
import AppShell from "@/app/components/AppShell";
import { ToastProvider } from "@/app/context/ToastContext";

export const metadata: Metadata = {
title: {
default: "FlowForge",
template: "%s — FlowForge",
},
description:
"Kanban boards, team chat, and project tracking — without the extra tools you don't need.",
};

export default function RootLayout({
children,
}: {
Expand Down
13 changes: 13 additions & 0 deletions frontend/app/login/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Sign In",
};

export default function LoginLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
13 changes: 13 additions & 0 deletions frontend/app/projects/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Projects",
};

export default function ProjectsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
13 changes: 13 additions & 0 deletions frontend/app/signup/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Create Account",
};

export default function SignupLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
Loading