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}
- -
- - - ) -}