-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostGraduation.js
95 lines (89 loc) · 5.4 KB
/
PostGraduation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import React from "react";
import "./PostGraduation.css";
import Navigation from "./Navigation.js";
import Footer from "./Footer";
import PGCountryNames from "./PGCountryNames.js";
function PostGraduation() {
return (
<>
<Navigation />
<section className="BGGI flex flex-row justify-around">
<div className=" flex flex-row h-screen space-x-44">
<div className="w-[600px] h-[400px] mt-auto mb-auto text-center">
<h2 className="m-8 font-bold text-6xl">Post Graduation</h2>
<p className="font-serif text-2xl text-red-600">"Postgraduate" is often used in countries such as Australia, Bangladesh, India, Ireland, New Zealand, Pakistan, South Africa, and the UK.</p>
<p className="m-4 font-medium text-xl leading-10">Postgraduate or graduate education refers to academic or professional degrees, certificates, diplomas, or other qualifications pursued by post-secondary students who have earned an undergraduate (bachelor's) degree.</p>
</div>
<div className="flex flex-row ">
<img className="w-[550px] h-[450px] m-auto rounded-xl" src="https://img.freepik.com/free-photo/people-graduating-with-diplomas-close-up_23-2148950542.jpg?w=900&t=st=1670949160~exp=1670949760~hmac=8c41ebf6ae9c53622c781f2eec572be32b1efc77f09b34554468607d2dca55a2" alt="office content 1"></img>
</div>
</div>
</section>
<h1 className=" py-10 text-center text-5xl font-bold ">Countries</h1>
<div className="grid grid-cols-3 gap-5 ml-16">
<Countries />
</div>
<div className="flex justify-evenly h-screen bg-gray-100 space-x-24 mt-2 ">
<div >
<h1 className="font-bold text-center text-3xl py-4">Exams</h1>
<p className="w-[500px] font-serif text-2xl">A considerable number of students head towards appearing for various competitive and government exams after their graduation. These entrance exams after graduation open the door to a prosperous career for students. There are numerous competitive examinations; hence, students often find it difficult to make their choice. They get puzzled about which one to appear for and whether it would be the right decision for them.There are numerous competitive examinations; hence, students often find it difficult to make their choice. They get puzzled about which one to appear for and whether it would be the right decision for them.</p>
<button
type="button"
class=" inline-block px-6 py-3 ml-28 mt-3 bg-red-600 text-white font-serif text-lg leading-tight rounded-full shadow-md hover:bg-red-700 hover:scale-125 hover:duration-500 hover:shadow-lg focus:bg-red-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-red-800 active:shadow-lg transition duration-150 ease-in-out"
>
Check Out
</button>
</div>
<div className="h-screen border-4 border-white"></div>
<div >
<h1 className="font-bold text-center text-3xl py-4">Scholarship</h1>
<p className="w-[500px] font-serif text-2xl">Scholarships in India 2023 - Indian Government offers a gamut of scholarships to its meritorious students. These scholarships play an important role in the education sector. Many students are unable to pursue higher studies due to financial problems. These scholarships help students to continue their higher studies by providing financial assistance.These scholarships will help to reduce mental pressure by paying an amount of money. This is a great help for deserving students. Scholarship can be either merit-based or exam based. To get success in these scholarship exams, students need training and proper guidance. </p>
<button
type="button"
class=" inline-block px-6 py-3 ml-28 mt-3 bg-red-600 text-white font-serif text-lg leading-tight rounded-full shadow-md hover:bg-red-700 hover:scale-125 hover:duration-500 hover:shadow-lg focus:bg-red-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-red-800 active:shadow-lg transition duration-150 ease-in-out"
>
Check Out
</button>
</div>
</div>
<Footer />
</>
);
}
const Countries = () => {
return (
<>
{
PGCountryNames.map((CountryData, index) => {
return <CountryImage key={index} CountryData={CountryData}></CountryImage>
}
)}
</>
)
}
const CountryImage = (data) => {
const { Names, img } = data.CountryData
return (
<div class="h-auto">
<div class="rounded-lg shadow-lg bg-white max-w-sm border-2 border-gray-300">
<div class="p-6">
<h5 class="text-gray-900 text-4xl font-medium mb-4 text-center">{Names}</h5>
<a href="#!">
<img
class="rounded-t-lg py-3"
src={img}
alt=""
/>
</a>
<button
type="button"
class=" inline-block px-6 py-3 ml-24 bg-purple-500 text-white font-serif text-lg leading-tight rounded-full shadow-md hover:bg-purple-700 hover:scale-125 hover:duration-500 hover:shadow-lg focus:bg-purple-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-purple-800 active:shadow-lg transition duration-150 ease-in-out"
>
Check Out
</button>
</div>
</div>
</div>
);
}
export default PostGraduation;