From 68273fd1bc607506d76900e580d251dcc6cd9c26 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:00:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dc7499a..54c2b3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Instrument_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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const instrumentSans = Instrument_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Coptic Orthodox Church | Truth of Christianity", description: "Discover the rich spiritual heritage and timeless teachings of the Coptic Orthodox Church. Explore theology, worship, and join our faith community.", keywords: "Coptic Orthodox, Christianity, theology, faith, worship, church, spirituality", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Coptic Orthodox Church - Truth of Christianity", description: "Join the Coptic Orthodox Church community and explore 2000 years of apostolic tradition and spiritual wisdom.", type: "website", siteName: "Coptic Orthodox Church", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-praying-church-religious-pilgrimage_23-2150319304.jpg", alt: "Coptic Church sacred space"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Coptic Orthodox Church", description: "Explore the teachings and community of the Coptic Orthodox Church", images: ["http://img.b2bpic.net/free-photo/woman-praying-church-religious-pilgrimage_23-2150319304.jpg"], - }, -}; + title: "Coptic Orthodox Church", description: "Discover the rich spiritual heritage and teachings of the Coptic Orthodox faith"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}