diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aa8326d..b47e335 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Misrake Tsehaye Kidus Teklehaymanot Church EOTC", description: "Ethiopian Orthodox Tewahedo Church - Authentic faith, sacred worship, and vibrant community rooted in centuries of spiritual tradition.", keywords: "Ethiopian Orthodox Church, EOTC, Tewahedo, liturgy, worship, community, faith", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Misrake Tsehaye Kidus Teklehaymanot Church EOTC", description: "Join our faithful community in authentic Orthodox worship and spiritual growth", type: "website", siteName: "Misrake Tsehaye Church", images: [ - { - url: "http://img.b2bpic.net/free-photo/burning-candles-bathroom-dark_169016-26707.jpg", alt: "Church sanctuary"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Misrake Tsehaye Church - Ethiopian Orthodox Community", description: "Authentic faith, sacred worship, and spiritual community", images: ["http://img.b2bpic.net/free-photo/burning-candles-bathroom-dark_169016-26707.jpg"], - }, -}; + title: "Misrake Tsehaye Kidus Teklehaymanot Church", description: "Ethiopian Orthodox Tewahedo Church - A sacred community united in faith, worship, and spiritual devotion"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}