Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-10 13:38:07 +00:00
5 changed files with 77 additions and 38 deletions

View File

@@ -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={[

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -54,7 +54,7 @@ export default function LeadershipPage() {
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=2",
imageAlt: "Dr. Kwame Asante",
},
],
@@ -68,7 +68,7 @@ export default function LeadershipPage() {
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=2",
imageAlt: "Ama Boateng",
},
{
@@ -76,7 +76,7 @@ export default function LeadershipPage() {
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=2",
imageAlt: "Kofi Mensah",
},
{
@@ -84,7 +84,7 @@ export default function LeadershipPage() {
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=2",
imageAlt: "Nana Yaa Owusu",
},
],
@@ -111,7 +111,7 @@ export default function LeadershipPage() {
"NEIP's mentorship and funding support transformed our mobile app startup into a market leader. Within 18 months, we scaled from 3 to 25 employees and secured Series A funding.",
name: "Samuel Osei",
role: "Founder & CEO, TechVenture Solutions",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-making-hand-gesture-with-cup-coffee-laptop-desk_23-2147955304.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-making-hand-gesture-with-cup-coffee-laptop-desk_23-2147955304.jpg?_wi=2",
imageAlt: "Samuel Osei",
},
{
@@ -121,7 +121,7 @@ export default function LeadershipPage() {
"As a woman founder in tech, I faced unique challenges. NEIP's dedicated support network and female founder community helped me build confidence and secure my first institutional investment.",
name: "Abena Mensah",
role: "Founder, AgreTech Innovations",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg?_wi=2",
imageAlt: "Abena Mensah",
},
{
@@ -131,7 +131,7 @@ export default function LeadershipPage() {
"NEIP helped us validate our fintech solution and connected us with regional investors. Today we serve 50,000+ users across West Africa and created 40 direct jobs.",
name: "Ebenezer Boakye",
role: "Co-founder, FinServe Africa",
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg?_wi=2",
imageAlt: "Ebenezer Boakye",
},
{
@@ -141,7 +141,7 @@ export default function LeadershipPage() {
"The NEIP scale-up programme provided exactly what we needed - strategic guidance, market access, and capital connections. We now operate in 5 African countries.",
name: "Comfort Adomako",
role: "CEO, GreenHub Ltd",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-entrepreneur-standing-office-looking-camera_637285-2744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-entrepreneur-standing-office-looking-camera_637285-2744.jpg?_wi=2",
imageAlt: "Comfort Adomako",
},
{
@@ -151,7 +151,7 @@ export default function LeadershipPage() {
"Beyond funding, NEIP gave us a community. The network of entrepreneurs, mentors, and investors has been invaluable to our growth and cultural evolution.",
name: "Kwesi Appiah",
role: "Founder, CreativeHub Studios",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-office_23-2148017138.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-office_23-2148017138.jpg?_wi=2",
imageAlt: "Kwesi Appiah",
},
{
@@ -161,7 +161,7 @@ export default function LeadershipPage() {
"Hardware development is expensive and risky. NEIP's technical mentorship and prototyping support helped us refine our product before major investment.",
name: "Yvonne Mensah",
role: "Co-founder, IoT Solutions GH",
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099232.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099232.jpg?_wi=2",
imageAlt: "Yvonne Mensah",
},
]}

View File

@@ -118,7 +118,7 @@ export default function HomePage() {
title: "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=1"
imageAlt="NEIP entrepreneurship support ecosystem"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -196,7 +196,7 @@ export default function HomePage() {
price: "Early Stage",
rating: 5,
reviewCount: "180+ startups",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=1",
imageAlt: "Startup incubation program",
},
{
@@ -206,7 +206,7 @@ export default function HomePage() {
price: "Growth Stage",
rating: 5,
reviewCount: "120+ companies",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=2",
imageAlt: "Innovation acceleration program",
},
{
@@ -216,7 +216,7 @@ export default function HomePage() {
price: "Scaling Stage",
rating: 5,
reviewCount: "80+ enterprises",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=3",
imageAlt: "Scale-up leadership program",
},
]}
@@ -241,7 +241,7 @@ export default function HomePage() {
quote: "NEIP's mentorship and funding support transformed our mobile app startup into a market leader. Within 18 months, we scaled from 3 to 25 employees and secured Series A funding.",
name: "Samuel Osei",
role: "Founder & CEO, TechVenture Solutions",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-making-hand-gesture-with-cup-coffee-laptop-desk_23-2147955304.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-businessman-making-hand-gesture-with-cup-coffee-laptop-desk_23-2147955304.jpg?_wi=1",
imageAlt: "Samuel Osei",
},
{
@@ -250,7 +250,7 @@ export default function HomePage() {
quote: "As a woman founder in tech, I faced unique challenges. NEIP's dedicated support network and female founder community helped me build confidence and secure my first institutional investment.",
name: "Abena Mensah",
role: "Founder, AgreTech Innovations",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg?_wi=1",
imageAlt: "Abena Mensah",
},
{
@@ -259,7 +259,7 @@ export default function HomePage() {
quote: "NEIP helped us validate our fintech solution and connected us with regional investors. Today we serve 50,000+ users across West Africa and created 40 direct jobs.",
name: "Ebenezer Boakye",
role: "Co-founder, FinServe Africa",
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg?_wi=1",
imageAlt: "Ebenezer Boakye",
},
{
@@ -268,7 +268,7 @@ export default function HomePage() {
quote: "The NEIP scale-up programme provided exactly what we needed - strategic guidance, market access, and capital connections. We now operate in 5 African countries.",
name: "Comfort Adomako",
role: "CEO, GreenHub Ltd",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-entrepreneur-standing-office-looking-camera_637285-2744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-entrepreneur-standing-office-looking-camera_637285-2744.jpg?_wi=1",
imageAlt: "Comfort Adomako",
},
{
@@ -277,7 +277,7 @@ export default function HomePage() {
quote: "Beyond funding, NEIP gave us a community. The network of entrepreneurs, mentors, and investors has been invaluable to our growth and cultural evolution.",
name: "Kwesi Appiah",
role: "Founder, CreativeHub Studios",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-office_23-2148017138.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-people-office_23-2148017138.jpg?_wi=1",
imageAlt: "Kwesi Appiah",
},
{
@@ -286,7 +286,7 @@ export default function HomePage() {
quote: "Hardware development is expensive and risky. NEIP's technical mentorship and prototyping support helped us refine our product before major investment.",
name: "Yvonne Mensah",
role: "Co-founder, IoT Solutions GH",
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099232.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099232.jpg?_wi=1",
imageAlt: "Yvonne Mensah",
},
]}

View File

@@ -82,7 +82,7 @@ export default function ProgramsPage() {
price: "Early Stage",
rating: 5,
reviewCount: "180+ startups",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=4",
imageAlt: "Startup incubation program",
},
{
@@ -92,7 +92,7 @@ export default function ProgramsPage() {
price: "Growth Stage",
rating: 5,
reviewCount: "120+ companies",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=5",
imageAlt: "Innovation acceleration program",
},
{
@@ -102,7 +102,7 @@ export default function ProgramsPage() {
price: "Scaling Stage",
rating: 5,
reviewCount: "80+ enterprises",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-learning-together-job_23-2149300758.jpg?_wi=6",
imageAlt: "Scale-up leadership program",
},
]}
@@ -158,7 +158,7 @@ export default function ProgramsPage() {
"Equity requirements depend on the program and funding provided. Some programs offer grants with no equity requirement, while others may take a small equity stake. We discuss terms transparently - there's no hidden conditions. Details are available in each program's terms and conditions.",
},
]}
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=2"
imageAlt="Entrepreneurship support help"
mediaAnimation="slide-up"
mediaPosition="left"