From ce76fd81577f7832a598f65136116b94dd99b2a7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 07:11:56 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 93d6f8a..e24791b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -119,7 +119,7 @@ export default function AboutPage() { icon: Zap, }, ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BCQSIeRuQrnbx7aoZ3c3CKLvsm/a-clean-organized-pharmacy-workspace-sho-1773990656984-f5116511.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BCQSIeRuQrnbx7aoZ3c3CKLvsm/a-clean-organized-pharmacy-workspace-sho-1773990656984-f5116511.png?_wi=2" imageAlt="PharmaLogy Features Overview" mediaAnimation="slide-up" textboxLayout="split" -- 2.49.1 From e699445bbe157ec37b0b5e89c31060fa342ecf3d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 07:11:56 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..581a8b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}