From 1e6306a9fce08e6e2fb1ff3e79eea00cfa79c772 Mon Sep 17 00:00:00 2001 From: "suraj.shenoy.b@gmail.com" Date: Sat, 25 Jan 2025 21:41:47 -0600 Subject: [PATCH] Update layout.tsx --- src/app/(web)/layout.tsx | 56 ---------------------------------------- 1 file changed, 56 deletions(-) diff --git a/src/app/(web)/layout.tsx b/src/app/(web)/layout.tsx index 21891a3..ffc4161 100644 --- a/src/app/(web)/layout.tsx +++ b/src/app/(web)/layout.tsx @@ -1,5 +1,3 @@ -/* - "use client" import React from 'react'; @@ -26,59 +24,5 @@ export default function RootLayout({ children }: { children: React.ReactNode }) ) } -*/ -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}
- -
- - - ) -}