diff --git a/pages/about-us.js b/pages/about-us.js
index 3790a25..0a99339 100644
--- a/pages/about-us.js
+++ b/pages/about-us.js
@@ -1,11 +1,88 @@
-import { Box, CssBaseline, Grid, Typography } from '@mui/material';
+import {
+ Box,
+ CssBaseline,
+ Grid,
+ Hidden,
+ Input,
+ Typography,
+} from '@mui/material';
+import Image from 'next/image';
+import { useRouter } from 'next/router';
+import { ArrowUp, CheckCircled } from '../src/components/svg';
import { Colors } from '../src/components/themes/colors';
import { Fonts } from '../src/components/themes/fonts';
+import { goToPortal } from '../src/utils';
import { VISION_AND_MISSION } from '../src/utils/contants';
import HomePageLayout from '../src/views/home/layout';
+const staffsImage = [
+ '/images/staff1.png',
+ '/images/staff2.png',
+ '/images/staff3.png',
+ '/images/staff4.png',
+];
+
+const goals = [
+ {
+ text: 'Using the internet for distance learning: 100% online learning, Bringing our programs to places that need them most',
+ },
+ { text: 'Keeping costs low' },
+ { text: 'Providing many ways to get financial help' },
+ { text: 'Education focused on workplace skills' },
+ { text: 'Emphasis on critical thinking and problem-solving' },
+ { text: 'Global community using technology for support' },
+ { text: 'Flexible, supportive, and affordable learning opportunities' },
+];
+
+const partners = [
+ {
+ title: 'Corporate partners',
+ text: 'Eduvacity collaborates with industry leaders to improve our online degrees. These companies offer internships and mentoring to give students real-world experience and boost their careers.',
+ },
+
+ {
+ title: 'Academic partners',
+ text: 'Eduvacity collaborates with renowned global universities to offer our students exceptional opportunities. These partnerships enrich our online degrees with high-quality educational programs and research.',
+ },
+ {
+ title: 'Charitable partners',
+ text: 'Eduvacity collaborates with leading foundations to advance our mission of delivering higher education online, anytime, anywhere. These partnerships provide students with financial support to complete their degrees and expand access to our programs.',
+ },
+];
+
+const experience = [
+ { text: 'Gain practical skills through real-world projects' },
+ { text: 'Start your program anytime, no waiting' },
+ { text: 'Get 24/7 support from faculty, advisors, and coaches' },
+ { text: 'Earn an accredited degree recognized by' },
+ { text: 'Access learning resources for lifelong learning at no extra cost' },
+ {
+ text: 'Join a global community of learners, including professionals at top companies',
+ },
+];
+const supporters = [
+ {
+ name: 'Assetium Capital Management Limited',
+ logo: '/images/assetium-logo.png',
+ },
+ // { name: 'Ahmadu Bello University', logo: '/images/abu-logo.png' },
+];
+
+const stat = [
+ { percent: '85', details: "of future jobs haven't been created yet" },
+ {
+ percent: '70',
+ details: 'of professionals work from home at least one day a week.',
+ },
+ {
+ percent: '74',
+ details: ' of HR managers invest more in training new grads than before',
+ },
+];
+
export default function AboutUs() {
+ const router = useRouter();
return (
+ }}
+ >
+ }}
+ >
+ }}
+ >
+ gap: { xs: '40px', sm: '80px', md: '80px' },
+ }}
+ >
+ }}
+ >
+ }}
+ >
Redefining Higher Education:{' '}
+ }}
+ >
Shifting Paradigms!
@@ -78,7 +162,9 @@ export default function AboutUs() {
sx={{
display: 'flex',
flexDirection: 'column',
- }}>
+ pb: '50px',
+ }}
+ >
{VISION_AND_MISSION.map((item, i) => (
+ }}
+ >
+ }}
+ >
{item.title}
+ }}
+ >
+ }}
+ >
{item.text}
@@ -130,17 +220,869 @@ export default function AboutUs() {
sx={{
display: 'flex',
justifyContent: 'center',
- }}>
-
-
-
-
+ }}
+ >
+
+ {staffsImage.map((item, ind) => {
+ return (
+
+
+
+ );
+ })}
+
+ {/* Focus */}
+
+ div': {
+ display: 'flex',
+ alignItems: 'center',
+ justifyContent: 'flex-start',
+ },
+ }}
+ >
+
+
+ We are Future‑Focused
+
+
+
+
+ We are empowering 1,000,000,000 people in Africa with the tools
+ and opportunities to become world-class. Eduvacity is where
+ individuals from around Africa acquire the skills they need
+ precisely when they need them most. We're here to propel
+ people forward in their careers and personal journeys.
+
+
+
+ router.push(`${goToPortal}/signup`)}
+ sx={{
+ padding: '12px 20px 12px 20px',
+ // width: 'auto',
+ display: 'flex',
+ justifyContent: 'center',
+ alignItems: 'center',
+ font: `normal normal 500 normal 14px/19.2px ${Fonts.primary}`,
+ cursor: 'pointer',
+ color: 'rgba(230, 244, 237, 1)',
+ borderRadius: '46px',
+ background: Colors.primary,
+ '&:hover': {
+ background: Colors.primary,
+ },
+ whiteSpace: 'nowrap',
+ }}
+ >
+ Join The Program
+
+
+
+
+
+ {/* Goals Section */}
+
+
+
+ Our Goal
+
+
+ We offer higher education to everyone, no matter where they come
+ from, by:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {goals.map(({ text }, ind) => (
+
+
+
+ {' '}
+
+ {text}
+
+
+ ))}
+
+
+ router.push(`${goToPortal}/signup`)}
+ sx={{
+ padding: '12px 20px 12px 20px',
+ // width: 'auto',
+ display: 'flex',
+ justifyContent: 'center',
+ alignItems: 'center',
+ font: `normal normal 500 normal 14px/19.2px ${Fonts.primary}`,
+ cursor: 'pointer',
+ color: 'rgba(230, 244, 237, 1)',
+ borderRadius: '46px',
+ background: Colors.primary,
+ '&:hover': {
+ background: Colors.primary,
+ },
+ whiteSpace: 'nowrap',
+ }}
+ >
+ Join Program
+
+
+
+
+
+
+ {/* Partners */}
+
+
+
+ Our Partners
+
+
+ We partner with leading international organizations, corporations,
+ and foundations to help enrich our degree programs and broaden
+ student opportunities.
+
+
+
+
+ {partners.map(({ title, text }, ind) => (
+
+
+ {title}
+
+
+ {text}
+
+
+
+
+
+
+ ))}
+
+
+
+
+ {/* Experience */}
+
+
+
+
+ Your online learning experience
+
+
+ We're here to prepare you for the future workplace, not the
+ past, focusing on industries with the most growth potential. Stand
+ out with Eduvacity.
+
+
+ {experience.map(({ text }, ind) => (
+
+
+
+ {' '}
+
+ {text}
+
+
+ ))}
+
+
+
+
+
+
+
+
+ Backed by
+
+
+ {supporters.map((partner, index) => (
+
+
+
+ {partner.name}
+
+
+ ))}
+
+
+
+
+ {/* Stat */}
+
+
+ The world is changing. Shouldn't universities in Africa change
+ too?
+
+ *:not(:last-child)': {
+ // Apply styles to all children except the last one
+ borderRight: { sm: '1px solid rgba(150, 150, 150, 0.5)' },
+ borderBottom: {
+ xs: '1px solid rgba(150, 150, 150, 0.3)',
+ sm: 'none',
+ },
+ },
+ }}
+ >
+ {stat.map(({ percent, details }, index) => (
+
+
+ {percent} %
+
+
+
+ {details}
+
+
+ ))}
+
+
+ {/* newsletter */}
+
+
+
+
+ Sign up for our newsletter
+
+
+ Be the first to know about releases and industry news and
+ insights.
+
+
+
+
+
+ router.push(`${goToPortal}/signup`)}
+ sx={{
+ padding: '12px 20px 12px 20px',
+ // width: 'auto',
+ display: 'flex',
+ justifyContent: 'center',
+ alignItems: 'center',
+ font: `normal normal 500 normal 14px/19.2px ${Fonts.primary}`,
+ cursor: 'pointer',
+ color: 'rgba(230, 244, 237, 1)',
+ borderRadius: '46px',
+ background: Colors.primary,
+ '&:hover': {
+ background: Colors.primary,
+ },
+ whiteSpace: 'nowrap',
+ }}
+ >
+ Subscribe
+
+
+
+ We care about your data in our privacy policy.
+
+
+
+
);
}
diff --git a/pages/why-eduvacity.js b/pages/why-eduvacity.js
index 127f30f..7814202 100644
--- a/pages/why-eduvacity.js
+++ b/pages/why-eduvacity.js
@@ -26,6 +26,7 @@ import {
WHY_EDUVACITY_VALUE_DESC,
} from '../src/utils/contants';
import HomePageLayout from '../src/views/home/layout';
+import { capitalizeTitle } from '../src/utils/capitalizeTitle';
export default function WhyEduvasityPage() {
const router = useRouter();
@@ -243,8 +244,9 @@ export default function WhyEduvasityPage() {
textAlign: 'left',
}}
>
- Collaborates with experts institutions to offer courses
- aligned with industry needs
+ {capitalizeTitle(
+ 'Collaborates with experts institutions to offer courses aligned with industry needs'
+ )}
- Collaborates with experts institutions to offer courses
- aligned with industry needs
+ {capitalizeTitle(
+ 'Collaborates with experts institutions to offer courses aligned with industry needs'
+ )}
+ }}
+ >
+ }}
+ >
Why{' '}
Learners{' '}
Love Eduvacity?
@@ -51,13 +53,15 @@ export default function Testimony() {
px: '20px',
maxHeight: '180px',
radius: '6px',
- }}>
+ }}
+ >
+ }}
+ >
+ }}
+ >
+ }}
+ >
“
+ }}
+ >
{testimony.comment}
+ }}
+ >
{testimony.name}
diff --git a/src/utils/capitalizeTitle.js b/src/utils/capitalizeTitle.js
new file mode 100644
index 0000000..b3cdae3
--- /dev/null
+++ b/src/utils/capitalizeTitle.js
@@ -0,0 +1,26 @@
+export const capitalizeTitle = (title) => {
+ const skipWords = [
+ 'a',
+ 'an',
+ 'the',
+ 'and',
+ 'but',
+ 'or',
+ 'for',
+ 'nor',
+ 'on',
+ 'at',
+ 'to',
+ 'by',
+ 'with',
+ ];
+ return title
+ .split(' ')
+ .map((word, i) => {
+ if (skipWords.includes(word) && i !== 0) {
+ return word;
+ }
+ return word.charAt(0).toUpperCase() + word.slice(1);
+ })
+ .join(' ');
+};
diff --git a/src/utils/contants.js b/src/utils/contants.js
index 30c29b7..c128a88 100644
--- a/src/utils/contants.js
+++ b/src/utils/contants.js
@@ -37,7 +37,7 @@ export const FOOTER_COMPANY = [
{ title: 'Why eduvacity', href: '/why-eduvacity' },
{ title: 'Careers', href: '#' },
{ title: 'Partners', href: '#' },
- { title: 'Become an instructors', href: '#' },
+ { title: 'Become an instructor', href: '#' },
{ title: 'Scholarships', href: '#' },
];
diff --git a/src/views/home/features/index.js b/src/views/home/features/index.js
index 4df64d1..bfa16ba 100644
--- a/src/views/home/features/index.js
+++ b/src/views/home/features/index.js
@@ -44,7 +44,7 @@ const cards = [
icon: ,
},
{
- name: 'Lifelong leaning',
+ name: 'Lifelong learning',
description:
'The learning journey is perpetual. Eduvacity empowers you with a wealth of knowledge and mentorship throughout your career journey, ensuring that your educational pursuit transcends industry relevance.',
icon: ,
@@ -70,7 +70,8 @@ export default function FeaturesCard() {
gap: '64px',
boxShadow: 'none',
background: '#F6F7F7',
- }}>
+ }}
+ >
{card.icon}
+ }}
+ >
{card.name}
+ }}
+ >
{card.description}
diff --git a/src/views/home/footer.js b/src/views/home/footer.js
index 3810e43..e0b037e 100644
--- a/src/views/home/footer.js
+++ b/src/views/home/footer.js
@@ -17,6 +17,7 @@ import {
FOOTER_COURSES,
FOOTER_NOTE,
} from '../../utils/contants';
+import { capitalizeTitle } from '../../utils/capitalizeTitle';
export default function FooterPage() {
const today = new Date();
@@ -32,7 +33,8 @@ export default function FooterPage() {
flexDirection: 'column',
flexWrap: 'wrap',
gap: 7.25,
- }}>
+ }}
+ >
+ }}
+ >
+ }}
+ >
+ }}
+ >
{FOOTER_NOTE}
+ }}
+ >
Address
- No 56 Labito crescent wuse 2 federal capital Territory Abuja,
- Nigeria
+ }}
+ >
+ {capitalizeTitle(
+ 'No 56 Labito crescent wuse 2 federal capital Territory Abuja, Nigeria'
+ )}
+ }}
+ >
+ }}
+ >
+ }}
+ >
Courses
{FOOTER_COURSES.map((course, index) => (
@@ -134,7 +145,8 @@ export default function FooterPage() {
color: '#E6F4ED',
font: `normal normal 600 normal 14px/24px ${Fonts.inter}`,
letterSpacing: '0em',
- }}>
+ }}
+ >
{course}
))}
@@ -149,14 +161,16 @@ export default function FooterPage() {
gap: '16px',
alignItems: 'flex-start',
ml: { xs: 0, sm: 4, lg: 6, xl: 3 },
- }}>
+ }}
+ >
+ }}
+ >
Company
{FOOTER_COMPANY.map((company, index) => (
@@ -169,8 +183,9 @@ export default function FooterPage() {
color: '#E6F4ED',
font: `normal normal 600 normal 14px/24px ${Fonts.inter}`,
letterSpacing: '0em',
- }}>
- {company.title}
+ }}
+ >
+ {capitalizeTitle(company.title)}
))}
@@ -183,14 +198,16 @@ export default function FooterPage() {
flexDirection: 'column',
gap: '16px',
alignItems: 'flex-start',
- }}>
+ }}
+ >
+ }}
+ >
Academics
+ }}
+ >
Blogs
{' '}
- Idea hubs
+ }}
+ >
+ Idea Hubs
- Contact us
+ }}
+ >
+ Contact Us
@@ -236,14 +256,16 @@ export default function FooterPage() {
flexDirection: 'column',
gap: '16px',
alignItems: 'flex-start',
- }}>
+ }}
+ >
+ }}
+ >
Resources
+ }}
+ >
Blogs
{' '}
- Idea hubs
+ }}
+ >
+ Idea Hubs
+ }}
+ >
E-library
+ }}
+ >
FAQs
- How to get started
+ }}
+ >
+ {capitalizeTitle('How to get started')}
@@ -311,14 +338,16 @@ export default function FooterPage() {
flexDirection: 'column',
gap: '16px',
alignItems: 'flex-start',
- }}>
+ }}
+ >
+ }}
+ >
Legal
+ }}
+ >
Terms
{' '}
+ }}
+ >
Privacy
+ }}
+ >
Cookies
+ }}
+ >
Licenses
@@ -381,7 +414,8 @@ export default function FooterPage() {
borderTop: `1px solid #1B3139`,
background: Colors.secondary,
mb: { xs: '45px', sm: 0 },
- }}>
+ }}
+ >
+ }}
+ >
+ }}
+ >
© {year} eduvacity. All rights reserved.
@@ -409,7 +445,8 @@ export default function FooterPage() {
+ target="_blank"
+ >
@@ -417,7 +454,8 @@ export default function FooterPage() {
+ target="_blank"
+ >
@@ -425,7 +463,8 @@ export default function FooterPage() {
+ target="_blank"
+ >
@@ -433,7 +472,8 @@ export default function FooterPage() {
+ target="_blank"
+ >
@@ -441,7 +481,8 @@ export default function FooterPage() {
+ target="_blank"
+ >
@@ -454,7 +495,8 @@ export default function FooterPage() {
display: { xs: 'flex', sm: 'none' },
font: `normal normal 400 normal 16px/24px ${Fonts.inter}`,
letterSpacing: '0em',
- }}>
+ }}
+ >
© {year} eduvacity. All rights reserved.