-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
789d125
commit 2e4ec88
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from "react"; | ||
|
||
const Mission = () => { | ||
return ( | ||
<div> | ||
<p className="text-center text-3xl font-bold my-6">Our Mission_</p> | ||
<div className="grid grid-cols-1 md:grid-cols-2 space-x-2"> | ||
<img className="rounded-lg " src="mission.jpg" alt="" /> | ||
<div className="font-semibold "> | ||
<p className="p-5 mb-3 bg-base-300 rounded-lg"> | ||
<span className="text-primary">Why:</span> We are passionate about | ||
empowering individuals to transform their lives through the power of | ||
coding. We believe that everyone should have access to high-quality, | ||
affordable coding education, regardless of their background or | ||
experience. instructors are always available to guide and mentor our students, | ||
</p> | ||
<p className="p-5 mb-3 bg-base-300 rounded-lg"> | ||
<span className="text-primary">What:</span> We provide a comprehensive range of online | ||
programming courses, instructors are always available to guide and mentor our students, from beginner-level Web Development to advanced | ||
CSE Fundamentals and Advanced Programming Courses. Our courses are | ||
designed to be engaging, effective, and tailored to the needs of | ||
today's learners. | ||
</p> | ||
<p className="p-5 bg-base-300 rounded-lg"> | ||
<span className="text-primary">How:</span> We nurture our students in a personalized and | ||
supportive environment that fosters confidence and success. Our | ||
friendly and dedicated instructors are always available to guide and | ||
mentor our students, ensuring they receive the support they need to | ||
achieve their coding goals. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Mission; |