81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Manrope } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const manrope = Manrope({
|
|
variable: "--font-manrope",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Pylon Trading PLC - Pharmaceutical Wholesale Supplier Ethiopia",
|
|
description: "Reliable pharmaceutical wholesale supplier delivering quality medicines and medical supplies to hospitals, pharmacies, and clinics across Ethiopia. 250+ healthcare partners trust us.",
|
|
keywords: "pharmaceutical wholesale Ethiopia, medicine supplier, healthcare distribution, pharmacy supplier, pharmaceutical company",
|
|
metadataBase: new URL("https://pylontrading.et"),
|
|
alternates: {
|
|
canonical: "https://pylontrading.et",
|
|
},
|
|
openGraph: {
|
|
title: "Pylon Trading PLC - Ethiopia's Trusted Pharmaceutical Wholesale Partner",
|
|
description: "Quality medicines and medical supplies for Ethiopian healthcare institutions. Fast delivery, regulatory compliance, affordable pricing.",
|
|
url: "https://pylontrading.et",
|
|
siteName: "Pylon Trading PLC",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall-interior_1203-7842.jpg",
|
|
alt: "Pylon Trading Pharmaceutical Warehouse",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Pylon Trading PLC - Pharmaceutical Wholesale",
|
|
description: "Trusted pharmaceutical supplier for Ethiopian healthcare institutions",
|
|
images: ["http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall-interior_1203-7842.jpg"],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |