Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -149,7 +149,7 @@ export default function LandingPage() {
|
||||
tag="Get In Touch"
|
||||
tagIcon={Mail}
|
||||
title="Connect With Our Church Community"
|
||||
description="Whether you seek spiritual guidance, wish to join our congregation, or have questions about our services, we welcome your inquiry. Reach out to us and become part of our faithful community."
|
||||
description="Whether you seek spiritual guidance, wish to join our congregation, or have questions about our services, we welcome your inquiry. Reach out to us and become part of our faithful community. Sunday Services: 10:00 AM | Address: 123 Orthodox Way, Faith City, ST 12345 | Phone: (555) 123-4567"
|
||||
buttons={[
|
||||
{ text: "Contact Us", href: "https://forms.example.com/contact" },
|
||||
{ text: "Visit Us", href: "https://maps.example.com" },
|
||||
|
||||
Reference in New Issue
Block a user