From 724815a54413026e481f6ecb998a1487e96bcd72 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:54:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1435 +------------------------------------------- 1 file changed, 26 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 924a80d..0a468c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Grace Church - Worship, Community & Spiritual Growth", description: "Join Grace Church for inspiring worship, vibrant community, and meaningful spiritual growth. Discover our ministries, events, and ways to serve.", keywords: "church, worship, community, spiritual growth, faith, ministries, volunteer", metadataBase: new URL("https://gracechurch.local"), - alternates: { - canonical: "https://gracechurch.local"}, - openGraph: { - title: "Grace Church - Where Faith Meets Community", description: "Experience spiritual growth and community connection at Grace Church. Join us for worship, ministries, and service opportunities.", url: "https://gracechurch.local", siteName: "Grace Church", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/low-angle-view-convent-our-lady-mount-carmel-cloudy-sky-lisbon-portugal_181624-21153.jpg", alt: "peaceful church sanctuary interior worship"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Grace Church - Spiritual Community", description: "Join our faith community for worship, growth, and service. Welcome to Grace Church.", images: ["http://img.b2bpic.net/free-photo/low-angle-view-convent-our-lady-mount-carmel-cloudy-sky-lisbon-portugal_181624-21153.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "New Vision Community Church", description: "New Vision Community Church - Serving the Haitian community in Brooklyn, NY"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -