diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 89fafa7..711dade 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Elevated - Successful Potheads Community", description: "Connect with high-achieving cannabis enthusiasts. Join a thriving community celebrating success, wellness, and authentic connection without judgment.", keywords: "cannabis community, potheads, successful people, wellness, networking, lifestyle", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Elevated - The Community for Successful Potheads", description: "Connect with high-achieving cannabis enthusiasts in a judgment-free community. Share experiences, build relationships, celebrate success.", type: "website", siteName: "Elevated"}, - twitter: { - card: "summary_large_image", title: "Elevated - Successful Potheads Community", description: "Join thousands of accomplished cannabis users building real connections."}, -}; + title: "Elevated Community", description: "Success Without Apology: Your Community Awaits"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}