Skip to content

Commit f9308d9

Browse files
feat: add SAP, Kubernetes & Cybersecurity feature cards to homepage
1 parent 4df9623 commit f9308d9

37 files changed

Lines changed: 175 additions & 51 deletions

.github/workflows/azgdeploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Deploy DoomSkillsWeb to Azure
1+
name: Build and Deploy BoonSkillsWeb to Azure
22

33
on:
44
push:

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Deploy DoomSkillsWeb to Azure
1+
name: Build and Deploy BoonSkillsWeb to Azure
22

33
on:
44
push:

DoomSkillsWeb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ COPY --from=build /app/publish .
1919
ENV ASPNETCORE_URLS=http://+:5000
2020
EXPOSE 5000
2121

22-
ENTRYPOINT ["dotnet", "DoomSkillsWeb.dll"]
22+
ENTRYPOINT ["dotnet", "BoonSkillsWeb.dll"]

DoomSkillsWeb/DoomSkillsWeb.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<AssemblyName>BoonSkillsWeb</AssemblyName>
8+
<RootNamespace>BoonSkillsWeb</RootNamespace>
79
</PropertyGroup>
810

911
</Project>

DoomSkillsWeb/Pages/About.cshtml

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
@page
2+
@model AboutModel
3+
@{
4+
ViewData["Title"] = "About";
5+
}
6+
7+
<style>
8+
.container {
9+
max-width: 1000px;
10+
margin: 0 auto;
11+
padding: 3rem 2rem;
12+
}
13+
.about-section {
14+
background: white;
15+
border-radius: 20px;
16+
padding: 3rem;
17+
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
18+
}
19+
.about-section h1 {
20+
color: #667eea;
21+
font-size: 2.5rem;
22+
margin-bottom: 1.5rem;
23+
}
24+
.about-section h2 {
25+
color: #764ba2;
26+
font-size: 1.8rem;
27+
margin: 2rem 0 1rem;
28+
}
29+
.about-section p {
30+
color: #555;
31+
line-height: 1.8;
32+
font-size: 1.1rem;
33+
margin-bottom: 1rem;
34+
}
35+
.about-section ul {
36+
list-style: none;
37+
padding: 0;
38+
}
39+
.about-section ul li {
40+
padding: 0.5rem 0;
41+
color: #666;
42+
}
43+
.about-section ul li:before {
44+
content: "";
45+
color: #667eea;
46+
font-weight: bold;
47+
margin-right: 0.5rem;
48+
}
49+
.highlight-box {
50+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
51+
color: white;
52+
padding: 2rem;
53+
border-radius: 15px;
54+
margin-top: 2rem;
55+
}
56+
</style>
57+
58+
<div class="container">
59+
<div class="about-section">
60+
<h1>About DoomSkills Training Institute</h1>
61+
<p>Welcome to DoomSkills, your trusted partner in tech career transformation and skill advancement.</p>
62+
63+
<h2>Our Mission</h2>
64+
<p>We empower IT professionals to master cutting-edge technologies through practical, hands-on training and real-world project experience.</p>
65+
66+
<h2>Why Choose DoomSkills?</h2>
67+
<ul>
68+
<li>20+ years of industry experience in Testing, Cloud, and DevOps</li>
69+
<li>Hands-on, project-based learning approach</li>
70+
<li>Real-world scenarios and enterprise best practices</li>
71+
<li>Personalized mentorship and career guidance</li>
72+
<li>Flexible schedules for working professionals</li>
73+
<li>Certification preparation (Azure AZ-104, AZ-305, and more)</li>
74+
</ul>
75+
76+
<h2>About the Instructor - Gaffar</h2>
77+
<p>With over 20 years of experience in IT, specializing in test automation, cloud architecture, and DevOps practices, Gaffar brings real-world expertise to every training session.</p>
78+
<ul>
79+
<li>Senior Test Automation Specialist at TCS</li>
80+
<li>Azure Cloud Architecture certifications</li>
81+
<li>Expert in Selenium, Playwright, Cucumber BDD</li>
82+
<li>Proficient in Azure, GitHub Actions, CI/CD pipelines</li>
83+
<li>ServiceNow implementation experience</li>
84+
</ul>
85+
86+
<div class="highlight-box">
87+
<h2 style="color: white; margin-top: 0;">Ready to Transform Your Career?</h2>
88+
<p style="color: white;">Join hundreds of professionals who have elevated their skills with DoomSkills.</p>
89+
</div>
90+
</div>
91+
</div>

DoomSkillsWeb/Pages/About.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.AspNetCore.Mvc.RazorPages;
22

3-
namespace DoomSkillsWeb.Pages
3+
namespace BoonSkillsWeb.Pages
44
{
55
public class AboutModel : PageModel
66
{

DoomSkillsWeb/Pages/Contact.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
<div class="icon">📱</div>
152152
<div>
153153
<h4>Phone</h4>
154-
<p>+91 9885012409</p>
154+
<p>xxxx</p>
155155
</div>
156156
</div>
157157

@@ -195,7 +195,7 @@
195195

196196
<div class="form-group">
197197
<label for="phone">Phone Number</label>
198-
<input type="tel" id="phone" name="phone" placeholder="+919885012409" value="+919885012409">
198+
<input type="tel" id="phone" name="phone" placeholder="xxxx" value="xxxx">
199199
</div>
200200

201201
<div class="form-group">

DoomSkillsWeb/Pages/Contact.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.AspNetCore.Mvc;
22
using Microsoft.AspNetCore.Mvc.RazorPages;
33

4-
namespace DoomSkillsWeb.Pages
4+
namespace BoonSkillsWeb.Pages
55
{
66
public class ContactModel : PageModel
77
{

DoomSkillsWeb/Pages/Courses.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.AspNetCore.Mvc.RazorPages;
22

3-
namespace DoomSkillsWeb.Pages
3+
namespace BoonSkillsWeb.Pages
44
{
55
public class CoursesModel : PageModel
66
{

DoomSkillsWeb/Pages/Error.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.AspNetCore.Mvc;
33
using Microsoft.AspNetCore.Mvc.RazorPages;
44

5-
namespace DoomSkillsWeb.Pages;
5+
namespace BoonSkillsWeb.Pages;
66

77
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
88
[IgnoreAntiforgeryToken]

0 commit comments

Comments
 (0)