+ Our Value shapes the core of our organization, and defines the
+ character of our industry
+
+
+
+
+
+
+ Integrity
+
+
+ We uphold the highest ethical standards in everything we do,
+ fostering trust and transparency with our clients, partners, and
+ employees. We believe that honesty and integrity are the foundation
+ of lasting success.
+
+
+
+
+
+ Customer Centricity
+
+
+ Our customers are at the heart of our business. We strive to
+ understand their needs, exceed their expectations, and build lasting
+ relationships based on trust and mutual respect. We believe that
+ putting our customers first is the key to long-term success.
+
+
+
+
+
+ Innovation
+
+
+ We embrace a culture of continuous improvement and creativity,
+ constantly seeking new ways to evolve and enhance our products,
+ services, and processes. We encourage experimentation and
+ risk-taking, recognizing that innovation is essential for growth.
+
+
+
+
+
+ Excellence
+
+
+ We are committed to delivering exceptional quality in everything we
+ do, from our products and services to our customer interactions and
+ internal processes. We strive for continuous improvement and hold
+ ourselves to the highest standards of performance.
+
+ Meet Our Exclusive team that have been trained to meet your needs.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default ExecutiveTeam;
\ No newline at end of file
diff --git a/src/components/layouts/aboutUs/Hero.tsx b/src/components/layouts/aboutUs/Hero.tsx
new file mode 100644
index 000000000..a3316fc4a
--- /dev/null
+++ b/src/components/layouts/aboutUs/Hero.tsx
@@ -0,0 +1,37 @@
+import Image from "next/image";
+
+const Hero = () => {
+ return (
+
+
+
+
+ About Us
+
+
+ More Than Just A BoilerPlate
+
+
+
+ Welcome to Hng Boilerplate, where passion meets innovation. Discover
+ how we started, the challenges we overcame, and the milestones that
+ define our journey.
+
+ At Hng Boilerplate, we are dedicated to exceeding your expectations.
+ We strive to understand your unique needs and challenges, providing
+ tailored solutions that drive real results and empower your success.
+
+
+
+
+ );
+};
+
+export default Mission;
diff --git a/src/components/layouts/aboutUs/OurServices.tsx b/src/components/layouts/aboutUs/OurServices.tsx
new file mode 100644
index 000000000..d9edef5b8
--- /dev/null
+++ b/src/components/layouts/aboutUs/OurServices.tsx
@@ -0,0 +1,46 @@
+"use client";
+
+import Image from "next/image";
+import Link from "next/link";
+
+const OurServices = () => {
+ return (
+
+
+
+
+ Our Services
+
+
+
+ Trained to Give You The Best
+
+
+
+
+
+
+ Contact Us
+
+
+
+
+
+ Since our founding in, Hng Boilerplate has been dedicated to
+ constantly evolving to stay ahead of the curve. Our agile mindset and
+ relentless pursuit of innovation ensure that you're always equipped
+ with the most effective tools and strategies.
+
+ At Hng Boilerplate, Our vision is to revolutionize the industry
+ landscape by continuously pushing the boundaries of innovation,
+ setting new standards, and inspiring others to follow.
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Vision;
From a8b4ff484cfd7972d3d6580ca2003e396b9191fb Mon Sep 17 00:00:00 2001
From: Ayodejioladimeji
Date: Thu, 25 Jul 2024 16:58:36 +0100
Subject: [PATCH 2/4] completed about us page
---
src/app/(landing-routes)/about-us/page.tsx | 50 ++++---
src/app/(landing-routes)/help-center/page.tsx | 20 ++-
src/components/common/TeamCard/teamcard.tsx | 60 ++++----
src/components/layouts/aboutUs/Blog.tsx | 68 ++++-----
src/components/layouts/aboutUs/CoreValues.tsx | 123 +++++++++--------
.../layouts/aboutUs/ExecutiveTeam.tsx | 130 +++++++++---------
src/components/layouts/aboutUs/Hero.tsx | 48 +++----
src/components/layouts/aboutUs/Join.tsx | 38 ++---
src/components/layouts/aboutUs/Mission.tsx | 2 +-
.../layouts/aboutUs/OurServices.tsx | 69 +++++-----
10 files changed, 300 insertions(+), 308 deletions(-)
diff --git a/src/app/(landing-routes)/about-us/page.tsx b/src/app/(landing-routes)/about-us/page.tsx
index 35a6f7778..541ebff57 100644
--- a/src/app/(landing-routes)/about-us/page.tsx
+++ b/src/app/(landing-routes)/about-us/page.tsx
@@ -1,30 +1,26 @@
-import React from 'react'
-import Blog from '~/components/layouts/aboutUs/Blog'
-import CoreValues from '~/components/layouts/aboutUs/CoreValues'
-import ExecutiveTeam from '~/components/layouts/aboutUs/ExecutiveTeam'
-import Hero from '~/components/layouts/aboutUs/Hero'
-import Join from '~/components/layouts/aboutUs/Join'
-import Mission from '~/components/layouts/aboutUs/Mission'
-import OurServices from '~/components/layouts/aboutUs/OurServices'
-import Vision from '~/components/layouts/aboutUs/Vision'
+import Blog from "~/components/layouts/aboutUs/Blog";
+import CoreValues from "~/components/layouts/aboutUs/CoreValues";
+import ExecutiveTeam from "~/components/layouts/aboutUs/ExecutiveTeam";
+import Hero from "~/components/layouts/aboutUs/Hero";
+import Join from "~/components/layouts/aboutUs/Join";
+import Mission from "~/components/layouts/aboutUs/Mission";
+import OurServices from "~/components/layouts/aboutUs/OurServices";
+import Vision from "~/components/layouts/aboutUs/Vision";
-interface Props {
-
-}
-const AboutUs= (props: Props) => {
- return (
- <>
-
-
-
-
-
-
-
-
- >
- )
-}
+const AboutUs = () => {
+ return (
+ <>
+
+
+
+
+
+
+
+
+ >
+ );
+};
-export default AboutUs
+export default AboutUs;
diff --git a/src/app/(landing-routes)/help-center/page.tsx b/src/app/(landing-routes)/help-center/page.tsx
index d65e6dac2..514d7e4b8 100644
--- a/src/app/(landing-routes)/help-center/page.tsx
+++ b/src/app/(landing-routes)/help-center/page.tsx
@@ -3,16 +3,12 @@
import { Search } from "lucide-react";
import Link from "next/link";
-import { Button } from "~/components/common/common-button";
import { Input } from "~/components/common/input";
import FaqAccordion from "~/components/layouts/accordion/FaqsAccordion";
import TopicsAccordions from "~/components/layouts/accordion/TopicAccordion";
import { faqData } from "~/constants/faqsdata";
//
-const handleButtonClickTest = () => {
- alert("Contact Button Click Test");
-};
const HelpCenter = () => {
//
@@ -87,8 +83,9 @@ const HelpCenter = () => {
{` We couldn’t answer your question?`}
-
Contact us
@@ -108,11 +105,12 @@ const HelpCenter = () => {
Contact us for more inquiries and information about our services.
-
- Contact us
-
+
+ Contact us
+
diff --git a/src/components/common/TeamCard/teamcard.tsx b/src/components/common/TeamCard/teamcard.tsx
index b7920e8e1..86a973003 100644
--- a/src/components/common/TeamCard/teamcard.tsx
+++ b/src/components/common/TeamCard/teamcard.tsx
@@ -4,7 +4,6 @@ import Link from "next/link";
import { Card, CardContent, CardFooter, CardTitle } from "~/components/ui/card";
-
interface TeamCardProperties {
name: string;
imageSrc: string;
@@ -27,7 +26,7 @@ const TeamCard: React.FC = ({
twitterURL,
}) => {
return (
-
+
- Our Value shapes the core of our organization, and defines the
- character of our industry
-
-
-
-
-
-
- Integrity
+
+
+
+
+ Our Core Values
-
- We uphold the highest ethical standards in everything we do,
- fostering trust and transparency with our clients, partners, and
- employees. We believe that honesty and integrity are the foundation
- of lasting success.
+
+ Our Value shapes the core of our organization, and defines the
+ character of our industry
-
-
- Customer Centricity
-
-
- Our customers are at the heart of our business. We strive to
- understand their needs, exceed their expectations, and build lasting
- relationships based on trust and mutual respect. We believe that
- putting our customers first is the key to long-term success.
-
-
+
+
+
+ Integrity
+
+
+ We uphold the highest ethical standards in everything we do,
+ fostering trust and transparency with our clients, partners, and
+ employees. We believe that honesty and integrity are the
+ foundation of lasting success.
+
+
-
-
- Innovation
-
-
- We embrace a culture of continuous improvement and creativity,
- constantly seeking new ways to evolve and enhance our products,
- services, and processes. We encourage experimentation and
- risk-taking, recognizing that innovation is essential for growth.
-
-
+
+
+ Customer Centricity
+
+
+ Our customers are at the heart of our business. We strive to
+ understand their needs, exceed their expectations, and build
+ lasting relationships based on trust and mutual respect. We
+ believe that putting our customers first is the key to long-term
+ success.
+
+
-
-
- Excellence
-
-
- We are committed to delivering exceptional quality in everything we
- do, from our products and services to our customer interactions and
- internal processes. We strive for continuous improvement and hold
- ourselves to the highest standards of performance.
-
+
+
+ Innovation
+
+
+ We embrace a culture of continuous improvement and creativity,
+ constantly seeking new ways to evolve and enhance our products,
+ services, and processes. We encourage experimentation and
+ risk-taking, recognizing that innovation is essential for
+ growth.
+
+
+
+
+
+ Excellence
+
+
+ We are committed to delivering exceptional quality in everything
+ we do, from our products and services to our customer
+ interactions and internal processes. We strive for continuous
+ improvement and hold ourselves to the highest standards of
+ performance.
+
- Meet Our Exclusive team that have been trained to meet your needs.
-
+
+ Meet Our Exclusive team that have been trained to meet your needs.
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
- );
+
+
+ );
};
-export default ExecutiveTeam;
\ No newline at end of file
+export default ExecutiveTeam;
diff --git a/src/components/layouts/aboutUs/Hero.tsx b/src/components/layouts/aboutUs/Hero.tsx
index a3316fc4a..a2d0d7259 100644
--- a/src/components/layouts/aboutUs/Hero.tsx
+++ b/src/components/layouts/aboutUs/Hero.tsx
@@ -3,34 +3,34 @@ import Image from "next/image";
const Hero = () => {
return (
-
-
-
- About Us
-
-
- More Than Just A BoilerPlate
-
+
+
+
+ About Us
+
+
+ More Than Just A BoilerPlate
+
-
- Welcome to Hng Boilerplate, where passion meets innovation. Discover
- how we started, the challenges we overcame, and the milestones that
- define our journey.
-
-
+
+ Welcome to Hng Boilerplate, where passion meets innovation. Discover
+ how we started, the challenges we overcame, and the milestones that
+ define our journey.
+
- Since our founding in, Hng Boilerplate has been dedicated to
- constantly evolving to stay ahead of the curve. Our agile mindset and
- relentless pursuit of innovation ensure that you're always equipped
- with the most effective tools and strategies.
-
-
-
+
+
+ {`Since our founding in, Hng Boilerplate has been dedicated to
+ constantly evolving to stay ahead of the curve. Our agile mindset
+ and relentless pursuit of innovation ensure that you're always
+ equipped with the most effective tools and strategies.`}
+