10 Commits

Author SHA1 Message Date
a95f0b9c31 Update src/app/page.tsx 2026-05-14 12:30:48 +00:00
93f5f80e91 Merge version_2 into main
Merge version_2 into main
2026-05-14 12:19:51 +00:00
f9e943ef9f Update src/app/verify/page.tsx 2026-05-14 12:19:48 +00:00
94019db277 Update src/app/page.tsx 2026-05-14 12:19:47 +00:00
469c143f63 Merge version_1 into main
Merge version_1 into main
2026-05-14 12:15:08 +00:00
7edfdebaf2 Merge version_1 into main
Merge version_1 into main
2026-05-14 12:13:17 +00:00
7fbb62bdac Merge version_1 into main
Merge version_1 into main
2026-05-14 12:12:47 +00:00
34ad85e2c7 Merge version_1 into main
Merge version_1 into main
2026-05-14 12:12:14 +00:00
7756715f45 Merge version_1 into main
Merge version_1 into main
2026-05-14 12:11:45 +00:00
e18bceff3c Merge version_1 into main
Merge version_1 into main
2026-05-14 12:11:18 +00:00
2 changed files with 26 additions and 35 deletions

View File

@@ -39,9 +39,9 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="Kobotoolbox Mastery"
description="Unlock the power of digital data collection. Join our comprehensive training course and become a professional field data specialist."
description="Unlock the power of digital data collection. Join our comprehensive training course conducted via WhatsApp groups and become a professional field data specialist."
buttons={[
{ text: "Start Learning", href: "#features" },
{ text: "Start Learning", href: "#pricing" },
]}
imageSrc="http://img.b2bpic.net/free-photo/desktop-pc-wooden-desk-showcases-infographics-client-reach-data_482257-126876.jpg"
/>
@@ -52,10 +52,10 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
title="What is Kobotoolbox?"
description="Kobotoolbox is the world's most popular open-source data collection platform. Our training course guides you from basic setup to advanced form design and automated reporting."
description="Kobotoolbox is the world's most popular open-source data collection platform. Our training course guides you through practical modules delivered directly to your WhatsApp group."
bulletPoints={[
{ title: "Intuitive Form Design", description: "Create complex survey forms without coding." },
{ title: "Advanced Data Analysis", description: "Export and interpret data using our advanced analytical tools." },
{ title: "WhatsApp Delivery", description: "Receive lessons and support through dedicated interactive groups." },
{ title: "Expert Guidance", description: "Direct access to instructors for personalized troubleshooting." },
{ title: "Offline Capability", description: "Collect data in remote locations with ease." },
]}
imageSrc="http://img.b2bpic.net/free-photo/business-partners-working-together-project_9975-22883.jpg"
@@ -99,12 +99,17 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Pricing Plans"
description="Flexible training packages for individuals and teams."
title="Training Fee"
description="A single, comprehensive course to master Kobotoolbox."
plans={[
{ id: "basic", badge: "Essential", price: "$99", subtitle: "For individuals", buttons: [{ text: "Select", href: "#" }], features: ["Core Modules", "Email Support"] },
{ id: "pro", badge: "Pro", price: "$199", subtitle: "For professionals", buttons: [{ text: "Select", href: "#" }], features: ["Advanced Modules", "Priority Support", "Certificate"] },
{ id: "team", badge: "Team", price: "$499", subtitle: "For organizations", buttons: [{ text: "Select", href: "#" }], features: ["Custom Training", "Dedicated Mentor", "Bulk Licenses"] }
{
id: "whatsapp-course",
badge: "Best Value",
price: "Free",
subtitle: "Host your own instance for free",
buttons: [{ text: "Get Started", href: "https://support.kobotoolbox.org/install_anywhere.html" }],
features: ["Full Data Control", "Unlimited Surveys", "Self-Hosted Deployment", "Community Support"]
}
]}
/>
</div>
@@ -130,4 +135,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,13 +26,9 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Verify Certificate",
id: "/verify",
},
name: "Verify Certificate", id: "/verify"},
]}
brandName="KoboMaster"
/>
@@ -42,8 +38,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
tag="Verification Portal"
title="Verify Certificate"
description="Enter your unique certificate code below to verify its authenticity and display holder information."
@@ -56,8 +51,7 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Get Help"
title="Still Need Assistance?"
description="If you are having trouble verifying your certificate, please reach out to our support team directly."
@@ -73,25 +67,17 @@ export default function LandingPage() {
logoText="KoboMaster"
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "Course",
href: "/",
},
label: "Course", href: "/"},
{
label: "Verification",
href: "/verify",
},
label: "Verification", href: "/verify"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}
@@ -100,4 +86,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}