diff --git a/api/our-approach.js b/api/our-approach.js new file mode 100644 index 0000000..aa159f6 --- /dev/null +++ b/api/our-approach.js @@ -0,0 +1,64 @@ +const Ourapproach = [ + { + id: 1, + authorTitle: "Our Approach", + title: "Innovative Solutions for Every Challenge", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + }, + { + id: 2, + authorTitle: "Our Mission", + title: "Empowering Businesses Through Technology", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + }, + { + id: 3, + authorTitle: "Our Values", + title: "Commitment, Integrity, and Innovation", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + }, + { + id: 4, + authorTitle: "Our Values", + title: "Commitment, Integrity, and Innovation", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + }, + { + id: 5, + authorTitle: "Our Values", + title: "Commitment, Integrity, and Innovation", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + }, + { + id: 6, + authorTitle: "Our Values", + title: "Commitment, Integrity, and Innovation", + para: "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.", + description: ` +

Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

+ `, + screens: "/images/funfact.jpg" + } +]; + +export default Ourapproach; diff --git a/components/Features/Features.js b/components/Features/Features.js index 4482e1d..83ff753 100644 --- a/components/Features/Features.js +++ b/components/Features/Features.js @@ -65,7 +65,7 @@ const ClickHandler = () => { const Features = (props) => { return ( -
+
diff --git a/components/aboutPage/AboutSection.js b/components/aboutPage/AboutSection.js index 507276c..0b74596 100644 --- a/components/aboutPage/AboutSection.js +++ b/components/aboutPage/AboutSection.js @@ -1,5 +1,5 @@ -import React from 'react' -import sign from '/public/images/signeture.png' +import React from 'react'; +import sign from '/public/images/signeture.png'; import Image from 'next/image'; const AboutSection = (props) => { @@ -8,36 +8,54 @@ const AboutSection = (props) => {
-
+ + {/* Text Column — Show first on mobile, second on desktop */} +
+
+
+ About Politian +

We Can Work Together For Create a Better Future.

+
+

+ The leader is eager to listen to the needs of the youth generation and to hear what + solutions they have to the problems they are facing. He hopes to find solutions that + will help them lead meaningful lives and make lasting change in the world. +

+

+ He believes that the collaboration between the youth and the leaders of society is + necessary to bring about a brighter future. Now, he is ready to take the first step + to making that happen. +

+
+

+ “We can start by taking small steps and making small changes that can have a big + impact on the world.” +

+
+
+
+
+
Robert Willum
+ CEO & Founder of Manit +
+
+
+ Signature +
+
+
+
+ + {/* Image Column — Show second on mobile, first on desktop */} +
- + About Image

1998

-
- W - e - A - r - e - W - o - r - k - i - n - g - F - o - r - Y - o - u - S - i - n - c - e + {Array.from("WeAreWorkingForYouSince").map((letter, index) => ( + {letter} + ))}
@@ -56,40 +74,12 @@ const AboutSection = (props) => {
-
-
-
- About Politian -

We Can Work Together For Create a Better Future.

-
-

The leader is eager to listen to the needs of the youth generation and to hear what - solutions they have to the problems they are facing. He hopes to find solutions that - will help them lead meaningful lives and make lasting change in the world.

-

He believes that the collaboration between the youth and the leaders of society is - necessary to bring about a brighter future. Now, he is ready to take the first step - to making that happen.

-
-

“We can start by taking small steps and making small changes that can have a big - impact on the world.”

-
-
-
-
-
Robert Willum
- CEO & Founder of Manit -
-
-
- -
-
-
-
+
- ) -} + ); +}; -export default AboutSection; \ No newline at end of file +export default AboutSection; diff --git a/components/header2/Header2.js b/components/header2/Header2.js index bccf639..604974e 100644 --- a/components/header2/Header2.js +++ b/components/header2/Header2.js @@ -46,6 +46,7 @@ const Header2 = (props) => {
  • Female Candidate
  • +
  • Our Approach
  • About us
  • -
  • + {/*
  • Pages -
  • + */}
  • Blog