diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ba01036..03148af 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -110,7 +110,7 @@ export default function AboutPage() { useInvertedBackground={false} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/extreme-close-up-shot-worker-server-hub-using-tablet_482257-90062.jpg" + imageSrc="http://img.b2bpic.net/free-photo/extreme-close-up-shot-worker-server-hub-using-tablet_482257-90062.jpg?_wi=3" imageAlt="Contact Us" inputPlaceholder="Enter your email" buttonText="Send Message" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7274556..9247bf8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -43,7 +43,7 @@ export default function ContactPage() { useInvertedBackground={false} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/extreme-close-up-shot-worker-server-hub-using-tablet_482257-90062.jpg" + imageSrc="http://img.b2bpic.net/free-photo/extreme-close-up-shot-worker-server-hub-using-tablet_482257-90062.jpg?_wi=4" imageAlt="contact us communication business" inputPlaceholder="Enter your email" buttonText="Send Message" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..edc071d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Public_Sans, 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 { Public_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "RayMedia | Digital Marketing & Creative Services Sri Lanka", + description: "Award-winning digital marketing agency in Sri Lanka. Social media marketing, graphic design, photography, event management, printing & concept design for businesses.", + keywords: "digital marketing Sri Lanka, social media marketing, graphic design, photography, event management, printing services, Sri Lankan marketing agency", + metadataBase: new URL("https://raymedia.lk"), + alternates: { + canonical: "https://raymedia.lk", + }, + openGraph: { + title: "RayMedia | Digital Marketing & Creative Services", + description: "Transform your business with our award-winning digital marketing and creative services.", + url: "https://raymedia.lk", + siteName: "RayMedia", + images: [ + { + url: "http://img.b2bpic.net/free-photo/smiling-corporate-employee-talking-with-remote-friend-videocall_482257-77679.jpg", + alt: "RayMedia Digital Marketing Agency", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "RayMedia | Digital Marketing Agency Sri Lanka", + description: "Professional digital marketing and creative services for Sri Lankan businesses.", + images: [ + "http://img.b2bpic.net/free-photo/smiling-corporate-employee-talking-with-remote-friend-videocall_482257-77679.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +65,9 @@ export default function RootLayout({ return ( - + {children}