diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index be46267..5c1be95 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -57,7 +57,7 @@ export default function AboutPage() { title: "Direct Jobs Created", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg" + imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg?_wi=2" imageAlt="NEIP entrepreneurship support ecosystem" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -77,7 +77,7 @@ export default function AboutPage() { title: "Dr. Kwame Asante", subtitle: "Executive Director & CEO", detail: "kw.asante@neip.gov.gh", - imageSrc: "http://img.b2bpic.net/free-photo/businessman-looking-camera-with-arms-crossed_23-2148308598.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessman-looking-camera-with-arms-crossed_23-2148308598.jpg?_wi=1", imageAlt: "Dr. Kwame Asante", }, ], @@ -91,7 +91,7 @@ export default function AboutPage() { title: "Ama Boateng", subtitle: "Director, Incubation Programs", detail: "a.boateng@neip.gov.gh", - imageSrc: "http://img.b2bpic.net/free-photo/confident-business-leader-sitting-table_1262-4870.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confident-business-leader-sitting-table_1262-4870.jpg?_wi=1", imageAlt: "Ama Boateng", }, { @@ -99,7 +99,7 @@ export default function AboutPage() { title: "Kofi Mensah", subtitle: "Director, Innovation & Technology", detail: "k.mensah@neip.gov.gh", - imageSrc: "http://img.b2bpic.net/free-photo/business-people-meeting_53876-95256.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/business-people-meeting_53876-95256.jpg?_wi=1", imageAlt: "Kofi Mensah", }, { @@ -107,7 +107,7 @@ export default function AboutPage() { title: "Nana Yaa Owusu", subtitle: "Director, Impact & Partnerships", detail: "n.owusu@neip.gov.gh", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153812.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153812.jpg?_wi=1", imageAlt: "Nana Yaa Owusu", }, ], @@ -135,7 +135,7 @@ export default function AboutPage() { useInvertedBackground={false} faqsAnimation="slide-up" mediaAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/business-people-dining-restaurant_53876-46892.jpg" + imageSrc="http://img.b2bpic.net/free-photo/business-people-dining-restaurant_53876-46892.jpg?_wi=1" imageAlt="Entrepreneurship support help" mediaPosition="left" faqs={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..8b3e631 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "NEIP - National Entrepreneurship & Innovation Programme Ghana", + description: "Support your entrepreneurial journey with NEIP. Access funding, mentorship, training, and networking to scale your startup. Join 500+ supported entrepreneurs.", + keywords: "entrepreneurship, innovation, startup support, Ghana, funding, mentorship, business development", + metadataBase: new URL("https://neip.gov.gh"), + alternates: { + canonical: "https://neip.gov.gh", + }, + openGraph: { + title: "NEIP - Empowering Entrepreneurs in Ghana", + description: "Join Ghana's leading entrepreneurship and innovation programme. We support visionary entrepreneurs with funding, mentorship, and market access.", + url: "https://neip.gov.gh", + siteName: "NEIP", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/businessman-updating-data-from-clipboard_482257-120297.jpg", + alt: "NEIP Entrepreneurship Program", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "NEIP - Empowering Entrepreneurs", + description: "Support for startups, innovation, and entrepreneurship in Ghana", + images: ["http://img.b2bpic.net/free-photo/businessman-updating-data-from-clipboard_482257-120297.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}