Skip to content

Commit f6d43f7

Browse files
authored
Update DemoApplication.java
1 parent 028de2a commit f6d43f7

File tree

1 file changed

+56
-8
lines changed

1 file changed

+56
-8
lines changed

src/main/java/DemoApplication.java

Lines changed: 56 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,36 @@ public String hello() {
1717
<head>
1818
<meta charset="UTF-8">
1919
<meta name="viewport" content="width=device-width, initial-scale=1.0">
20-
<title>DevOps Demo - OKE & ArgoCD</title>
20+
<title>CP-2 DevOps - FIAP</title>
2121
<style>
2222
body {
2323
font-family: Arial, sans-serif;
2424
background: linear-gradient(to right, #cc4e14ff, #2a5298);
2525
color: #fff;
2626
text-align: center;
27-
padding: 50px;
27+
padding: 30px;
28+
}
29+
.header {
30+
margin-bottom: 30px;
2831
}
2932
h1 {
3033
font-size: 2.5em;
31-
margin-bottom: 20px;
34+
margin-bottom: 10px;
3235
}
3336
h2 {
34-
margin-top: 10px;
37+
margin: 10px 0;
3538
font-weight: normal;
39+
font-size: 1.3em;
40+
}
41+
.cp-badge {
42+
display: inline-block;
43+
background: #ff4444;
44+
padding: 15px 30px;
45+
border-radius: 25px;
46+
font-weight: bold;
47+
color: #fff;
48+
margin: 20px;
49+
font-size: 1.2em;
3650
}
3751
.badge {
3852
display: inline-block;
@@ -43,18 +57,52 @@ public String hello() {
4357
color: #000;
4458
margin: 10px;
4559
}
60+
.students {
61+
background: rgba(255, 255, 255, 0.1);
62+
border-radius: 15px;
63+
padding: 20px;
64+
margin: 30px auto;
65+
max-width: 600px;
66+
}
67+
.student {
68+
margin: 8px 0;
69+
font-size: 1.1em;
70+
}
71+
.professor {
72+
margin-top: 20px;
73+
font-style: italic;
74+
}
4675
footer {
47-
margin-top: 50px;
76+
margin-top: 30px;
4877
font-size: 0.9em;
4978
opacity: 0.7;
5079
}
5180
</style>
5281
</head>
5382
<body>
54-
<h1> Aula de CI/CD com OKE na OCI </h1>
83+
<div class="header">
84+
<h1>FIAP - Faculdade de Informática e Administração Paulista</h1>
85+
<div class="cp-badge">CHECKPOINT 2 (CP-2)</div>
86+
</div>
87+
88+
<h1>DEVOPS CI CD</h1>
89+
<h2>CI/CD com ArgoCD na OCI</h2>
5590
<h2>Rodando no <span class="badge">OKE</span> com <span class="badge">ArgoCD</span></h2>
56-
<h2> Entrega Contínua na <b>Oracle Cloud Infrastructure</b></h2>
57-
<footer>&copy; 2025 | DevOps - Java + Kubernetes + ArgoCD</footer>
91+
<h2>Entrega Contínua na <b>Oracle Cloud Infrastructure</b></h2>
92+
93+
<div class="students">
94+
<h3>👥 Integrantes do Grupo:</h3>
95+
<div class="student">Bruno Pinheiro dos Santos - RM556184</div>
96+
<div class="student">Roberta Camargo Aquila - RM554455</div>
97+
<div class="student">Fernanda Carmona de Carvalho - RM557064</div>
98+
<div class="student">William Alves Coelho - RM556336</div>
99+
100+
<div class="professor">
101+
<strong>Profª. Olivia Ramos Morais Braga</strong>
102+
</div>
103+
</div>
104+
105+
<footer>&copy; 2025 | CP-2 DevOps - Java + Kubernetes + ArgoCD | FIAP</footer>
58106
</body>
59107
</html>
60108
""";

0 commit comments

Comments
 (0)