From cb8955dd65063eb4fa6931aa5d9c825605d48298 Mon Sep 17 00:00:00 2001 From: r-III03 Date: Sun, 26 Jan 2025 19:35:24 -0500 Subject: [PATCH] Update layout.tsx --- src/app/(web)/layout.tsx | 61 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) 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