diff --git a/frontend/app/dashboard/layout.tsx b/frontend/app/dashboard/layout.tsx new file mode 100644 index 0000000..105249f --- /dev/null +++ b/frontend/app/dashboard/layout.tsx @@ -0,0 +1,31 @@ +import type { Metadata } from "next"; +import Link from "next/link"; + + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default async function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + + return ( +
+ +
+ {children} +
+
+ ); +} diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 14f7334..72eaaf5 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -38,17 +38,14 @@ export default async function RootLayout({ className={`${geistSans.variable} ${geistMono.variable} antialiased`} > -
+
-

CV Blaster logoCV Blaster!

+

CV Blaster logoCV Blaster!

-

- Generate a CV easily with a few clicks -

-
+
{children}