diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index dfee8a1..a20751d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { tag="Community Trusted" tagIcon={Award} tagAnimation="blur-reveal" - imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg" + imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg?_wi=1" imageAlt="Löwen-Apotheke team" useInvertedBackground={false} buttons={[ diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a6c5e24..b3ab660 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -82,7 +82,7 @@ export default function ContactPage() { useInvertedBackground={false} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg" + imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg?_wi=2" imageAlt="Contact us" inputs={[ { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..b455746 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,51 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Montserrat, Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Löwen-Apotheke | Trusted Pharmacy Rheinfelden Switzerland", + description: "Löwen-Apotheke - Your trusted pharmacy in Rheinfelden offering prescription medications, health advice, and fast delivery service. 4.0★ rating from 30 reviews.", + keywords: "pharmacy Rheinfelden, medications, health advice, delivery service, trusted pharmacist", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Löwen-Apotheke | Pharmacy Rheinfelden", + description: "Your trusted pharmacy offering prescription medications, expert health advice, and fast delivery service.", + url: "https://löwen-apotheke.ch", + siteName: "Löwen-Apotheke", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/client-with-painful-headache-asking-migraine-medication-elderly-drugstore-worker-pharmacy-man-rubbing-temples-pharmacist-helping-client-with-pharmaceutics-pills-medicine-service_482257-62169.jpg", + alt: "Löwen-Apotheke Pharmacy", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Löwen-Apotheke | Trusted Pharmacy", + description: "Professional pharmaceutical services in Rheinfelden, Switzerland.", + images: [ + "http://img.b2bpic.net/free-photo/client-with-painful-headache-asking-migraine-medication-elderly-drugstore-worker-pharmacy-man-rubbing-temples-pharmacist-helping-client-with-pharmaceutics-pills-medicine-service_482257-62169.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +54,9 @@ export default function RootLayout({ return ( - + {children}