|
|
|
|
@@ -1,18 +1,22 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Lato } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
|
import { Lato } from "next/font/google";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Webild components 2",
|
|
|
|
|
description: "Generated by create next app",
|
|
|
|
|
};
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const lato = Lato({
|
|
|
|
|
variable: "--font-lato",
|
|
|
|
|
@@ -20,6 +24,41 @@ const lato = Lato({
|
|
|
|
|
weight: ["100", "300", "400", "700", "900"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "PharmaLogy - AI Pharmacy Inventory & Billing Management",
|
|
|
|
|
description: "Transform your pharmacy with PharmaLogy's AI-powered inventory management, automated billing, and real-time analytics. Streamline operations, reduce errors, manage cash flow effortlessly.",
|
|
|
|
|
keywords: "pharmacy management software, inventory management, billing automation, healthcare software, pharmacy POS, pharmacist tools, medical inventory",
|
|
|
|
|
metadataBase: new URL("https://pharmalogy.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://pharmalogy.com",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "PharmaLogy - AI Pharmacy Management Platform",
|
|
|
|
|
description: "Revolutionary pharmacy management with AI product scanning, automated billing, and business analytics for independent pharmacies and chains.",
|
|
|
|
|
url: "https://pharmalogy.com",
|
|
|
|
|
siteName: "PharmaLogy",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BCQSIeRuQrnbx7aoZ3c3CKLvsm/a-modern-pharmacy-management-dashboard-i-1773990656761-1019f897.png",
|
|
|
|
|
alt: "PharmaLogy Dashboard",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "PharmaLogy - Pharmacy Management Simplified",
|
|
|
|
|
description: "AI-powered pharmacy inventory management and billing automation platform.",
|
|
|
|
|
images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BCQSIeRuQrnbx7aoZ3c3CKLvsm/a-modern-pharmacy-management-dashboard-i-1773990656761-1019f897.png",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
@@ -28,7 +67,9 @@ export default function RootLayout({
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body className={`${lato.variable} antialiased`}>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
<script
|
|
|
|
|
@@ -40,4 +81,4 @@ export default function RootLayout({
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|