Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bc3a76c290 | |||
| 7936709f53 | |||
| 769863541f | |||
| 8fe638e509 | |||
| fb47255fbe | |||
| 8ffc2467e0 | |||
| 5a9d736882 |
@@ -1,54 +1,21 @@
|
||||
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 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ export default function LandingPage() {
|
||||
tag="Our Heritage"
|
||||
tagIcon={Cross}
|
||||
title="A Living Testament to Orthodox Faith"
|
||||
description="Misrake Tsehaye Kidus Teklehaymanot Church stands as a beacon of Ethiopian Orthodox Tewahedo tradition, rooted in centuries of spiritual wisdom. We are dedicated to preserving authentic liturgical practices, fostering deep spiritual growth, and serving our community with compassion and faith. Our congregation gathers to celebrate the rich heritage of the Orthodox Church while embracing contemporary community needs."
|
||||
description="Misrake Tsehaye Kidus Teklehaymanot Church is a spiritual home where deep faith and lifelong connections flourish. We are a sacred community rooted in centuries of Ethiopian Orthodox Tewahedo tradition, dedicated to preserving authentic liturgical practices and fostering profound spiritual growth. Our congregation gathers to celebrate the rich heritage of the Orthodox Church while embracing lifelong bonds of brotherhood and sisterhood. Here, you find not just a place of worship, but a spiritual sanctuary where each member belongs to a family united in faith, tradition, and compassionate service to one another and our community."
|
||||
metrics={[
|
||||
{ value: "1,800+", title: "Active Community Members" },
|
||||
{ value: "50+", title: "Years of Service" },
|
||||
@@ -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