diff --git a/src/app/(web)/layout.tsx b/src/app/(web)/layout.tsx index e422d2a..d4631ca 100644 --- a/src/app/(web)/layout.tsx +++ b/src/app/(web)/layout.tsx @@ -22,3 +22,64 @@ export default function RootLayout({ children }: { children: React.ReactNode }) ) } +<<<<<<< Updated upstream +======= +*/ + + + +import type { Metadata } from "next" +import { Inter } from "next/font/google" +import "../globals.css" +import { Mic } from "lucide-react" + +const inter = Inter({ subsets: ["latin"] }) + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + +
+
+
+
+ +

PostCare

+
+ +
+
+
{children}
+ +
+ + + ) +} + +>>>>>>> Stashed changes