Skip to content

Commit 1046cd9

Browse files
committed
for Pr carousel2
updated ulit po
1 parent b515812 commit 1046cd9

1 file changed

Lines changed: 103 additions & 56 deletions

File tree

src/sections/homePageSection/Components/carousel2.js

Lines changed: 103 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,11 @@ import React from "react";
22
import { Typography } from "@material-ui/core";
33
import BalanceOutlinedIcon from "@mui/icons-material/BalanceOutlined";
44
import PlayArrowSharpIcon from "@mui/icons-material/PlayArrowSharp";
5-
import { display, textAlign } from "@mui/system";
6-
import { px } from "@mantine/core";
5+
import { textAlign } from "@mui/system";
6+
77

88
const Carousel2 = () => {
9-
const styles = {
10-
backgroundColor: "red",
11-
width: "100%",
12-
height: "100%",
13-
display: "flex",
14-
justifyContent: "center",
15-
alignItems: "center",
16-
color: "white",
17-
fontSize: "24px",
18-
};
9+
1910

2011
const logo = {
2112
height: "100%",
@@ -33,7 +24,7 @@ const Carousel2 = () => {
3324
color: "white",
3425
fontStyle: "italic",
3526
width: "100%", // Ensures full-width layout
36-
marginBottom:'30px'
27+
marginBottom: "30px",
3728
};
3829

3930
const body = {
@@ -47,17 +38,14 @@ const Carousel2 = () => {
4738
};
4839

4940
const bodyContent = {
50-
display:"flex",
51-
flexDirection:"row",
52-
justifyContent:"flex-start",
53-
alignItems: 'flex-start',
54-
textAlign:"justify",
41+
display: "flex",
42+
flexDirection: "row",
43+
justifyContent: "flex-start",
44+
alignItems: "flex-start",
45+
textAlign: "justify",
5546
width: "100%", // Ensures full-width layout
5647
paddingBottom: "60px", // Ensures space for footer
57-
marginRight:'110px'
58-
59-
60-
48+
marginRight: "110px",
6149
};
6250

6351
const footer = {
@@ -74,6 +62,35 @@ const Carousel2 = () => {
7462
paddingRight: "20px", // Adds padding to the right
7563
};
7664

65+
const intro = {
66+
display: "block",
67+
color: "#7d0001",
68+
fontSize: "22px",
69+
fontWeight: "bold",
70+
marginLeft: "30px",
71+
textAlign:'justify'
72+
};
73+
74+
const description_title = {
75+
display: "flex",
76+
alignItems: "center",
77+
gap: "8px",
78+
fontWeight: "bold",
79+
color: "blue",
80+
fontSize: "22px",
81+
fontStyle: "italic",
82+
83+
84+
}
85+
86+
const description = {
87+
display: "block",
88+
marginLeft: "30px",
89+
textAlign: 'justify'
90+
}
91+
92+
93+
7794
return (
7895
<div
7996
style={{
@@ -115,48 +132,78 @@ const Carousel2 = () => {
115132
</div>
116133
</div>
117134

118-
119-
<div style={body}>
135+
<div style={body}>
120136
<div>
121-
122137
<div style={bodyContent}>
123-
<div></div>
124138
<div>
125-
<Typography variant="body1" style={{ marginTop: '40px', textAlign: 'left', marginLeft: '100px' }} gutterBottom>
126-
<span style={{ display: 'flex', alignItems: 'center', gap: '8px', fontWeight: 'bold', color: 'blue', fontSize: '22px', fontStyle:'italic' }}>
127-
<PlayArrowSharpIcon /> Executive Order No. 27 s. 2017</span>
128-
129-
<span style={{ display: 'block', color: '#7d0001', fontSize: '22px', fontWeight: 'bold' }}>
130-
On the implementation of the 2017 – 2022 Philippine Development Plan (PDP).</span>
131-
132-
<span style={{ display: 'block' }}>
133-
The implementation of the 2017 – 2022 Philippine Development Plan (PDP), the annual updating of
134-
Philippine Investment Program (PIP), and the updating of the Three-Year Rolling Infrastructure
135-
Projects (TRIP), has been exerting efforts to create its priority Projects and Programs (PAPs) or FY
136-
2022 as an input to the budget preparation for the said Fiscal Year</span>
137-
</Typography>
138-
139-
139+
<Typography
140+
variant="body1"
141+
style={{
142+
marginTop: "40px",
143+
textAlign: "left",
144+
marginLeft: "100px",
145+
}}
146+
gutterBottom
147+
>
148+
<span
149+
style={description_title}
150+
>
151+
<PlayArrowSharpIcon /> Executive Order No. 27 s. 2017
152+
</span>
153+
154+
<span
155+
style={intro}
156+
>
157+
On the implementation of the 2017 – 2022 Philippine
158+
Development Plan (PDP).
159+
</span>
160+
161+
<span style={description}>
162+
The implementation of the 2017 – 2022 Philippine Development
163+
Plan (PDP), the annual updating of Philippine Investment
164+
Program (PIP), and the updating of the Three-Year Rolling
165+
Infrastructure Projects (TRIP), has been exerting efforts to
166+
create its priority Projects and Programs (PAPs) or FY 2022 as
167+
an input to the budget preparation for the said Fiscal Year
168+
</span>
169+
</Typography>
140170
</div>
141171
</div>
142-
143172
</div>
144173
<div style={bodyContent}>
145-
<div></div>
146-
<div>
147-
<Typography variant="body1" style={{ marginTop: '40px', textAlign: 'left', marginLeft: '120px' }} gutterBottom>
148-
149-
<span style={{ display: 'flex', alignItems: 'center', gap: '8px', fontWeight: 'bold', color: 'blue', fontSize: '22px', fontStyle:'italic', }}>
150-
<PlayArrowSharpIcon /> Section 4, Feb 18, 2020</span>
151-
152-
<span style={{ display: 'block', color: '#7d0001', fontSize: '22px', fontWeight: 'bold' }}>Call for preparation of FY 2022 PAPs by CHED.</span>
153-
154-
<span style={{ display: 'block',}}> It requires SUC to seek endorsement/approval of the proposed PAPs from the Governing Board before its enrollment to the NEDA PIP Online
155-
(PIPOL) System.</span></Typography>
156-
157-
</div>
174+
<div></div>
175+
<div>
176+
<Typography
177+
variant="body1"
178+
style={{
179+
marginTop: "40px",
180+
textAlign: "left",
181+
marginLeft: "120px",
182+
}}
183+
gutterBottom
184+
>
185+
<span
186+
style={description_title}
187+
>
188+
<PlayArrowSharpIcon /> Section 4, Feb 18, 2020
189+
</span>
190+
191+
<span
192+
style={intro}
193+
>
194+
Call for preparation of FY 2022 PAPs by CHED.
195+
</span>
196+
197+
<span style={description}>
198+
{" "}
199+
It requires SUC to seek endorsement/approval of the proposed
200+
PAPs from the Governing Board before its enrollment to the NEDA
201+
PIP Online (PIPOL) System.
202+
</span>
203+
</Typography>
158204
</div>
159-
</div>
205+
</div>
206+
</div>
160207
{/* Footer */}
161208
<div style={footer}>
162209
<Typography variant="body1">

0 commit comments

Comments
 (0)