Skip to content

Commit 350c74b

Browse files
authored
add 404 page
1 parent 0313d80 commit 350c74b

8 files changed

Lines changed: 81 additions & 13 deletions

File tree

404.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="author" content="PkLavc">
7+
<title>404 | Page Not Found | Patrick Araujo</title>
8+
<meta name="description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
9+
<meta property="og:title" content="404 | Page Not Found | Patrick Araujo">
10+
<meta property="og:description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
11+
<meta property="og:url" content="https://pklavc.github.io/404.html">
12+
<meta property="og:type" content="website">
13+
<meta property="og:image" content="https://pklavc.github.io/images/Lavc.png">
14+
<meta property="og:image:alt" content="Brand portrait of enterprise systems architect and automation expert Patrick Araujo">
15+
<meta property="og:site_name" content="Patrick Araujo Portfolio">
16+
<meta name="twitter:card" content="summary_large_image">
17+
<meta name="twitter:title" content="404 | Page Not Found | Patrick Araujo">
18+
<meta name="twitter:description" content="The page you are looking for cannot be found. Return to Patrick Araujo's portfolio to explore solutions architecture, APIs, automation, and systems integration.">
19+
<meta name="twitter:image" content="https://pklavc.github.io/images/Lavc.png">
20+
<meta name="twitter:image:alt" content="Brand portrait of enterprise systems architect and automation expert Patrick Araujo">
21+
<meta name="robots" content="noindex, follow">
22+
<link rel="canonical" href="https://pklavc.github.io/404.html">
23+
<link rel="icon" type="image/png" href="images/Lavc.png">
24+
<link rel="stylesheet" href="css/global.css">
25+
<link rel="stylesheet" href="css/color-blue.css">
26+
<link rel="stylesheet" href="css/index.css">
27+
</head>
28+
<body>
29+
<div id="all">
30+
<div id="navigation-content" role="navigation" aria-label="Primary navigation">
31+
<div class="logo"></div>
32+
<div class="navigation-links">
33+
<a href="index.html">HOME</a>
34+
<a href="about.html">ABOUT</a>
35+
<a href="projects.html">PROJECTS</a>
36+
</div>
37+
</div>
38+
<div id="navigation-bar">
39+
<div class="menubar">
40+
<span class="first-span"></span>
41+
<span class="second-span"></span>
42+
<span class="third-span"></span>
43+
</div>
44+
</div>
45+
<main role="main" style="min-height: calc(100vh - 110px); display: flex; align-items: center; justify-content: center; padding: 80px 20px;">
46+
<section style="max-width: 780px; width: 100%; text-align: center; color: whitesmoke;">
47+
<h1 style="font-size: 4rem; margin-bottom: 0.5rem; letter-spacing: -1px;">404</h1>
48+
<h2 style="font-size: 2rem; margin-bottom: 1rem; color: #c0c0c0; font-weight: 500;">Page Not Found</h2>
49+
<p style="font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.75rem; color: #b5b5b5;">The page you are looking for may have been removed, had its name changed, or is temporarily unavailable. Return to the portfolio to explore systems architecture, API integration, and intelligent automation solutions.</p>
50+
<div style="display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;">
51+
<a href="index.html" style="background: var(--clr-primary); color: #000; padding: 14px 24px; border-radius: 999px; text-decoration: none; font-weight: 700;">Back to Home</a>
52+
<a href="projects.html" style="border: 1px solid var(--clr-primary); color: var(--clr-primary); padding: 14px 24px; border-radius: 999px; text-decoration: none;">View Projects</a>
53+
</div>
54+
<p style="margin-top: 2rem; color: #888;">If you entered the URL manually, please check the spelling and try again.</p>
55+
</section>
56+
</main>
57+
</div>
58+
</body>
59+
</html>

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# Portfolio Website - Patrick Araujo (PkLavc)
1+
# PkLavc - Solutions Architect & Technical Owner
2+
3+
Official repository for my professional portfolio.
4+
Focusing on high-reliability systems, SRE-aware automation, and complex API ecosystems.
25

36
## Overview
47

about.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -963,11 +963,10 @@
963963
<div id="about" aria-label="About section">
964964
<div class="about-container">
965965
<div class="about-side-title">
966-
<h1 style="position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;">About Me</h1>
967-
<h2>About <span class="color">Me</span></h2>
966+
<h1>About <span class="color">Me</span></h1>
968967
</div>
969968

970-
<div class="about-content-wrapper" aria-label="About content">
969+
<div class="about-content-wrapper" aria-label="About content">
971970
<p class="bio-text">
972971
<strong><span class="color">Solutions & Integration Architect and Computer Engineering student</span></strong> focused on designing proprietary systems and eliminating architectural bottlenecks in high-scale environments. Expertise in <span class="highlight">Software Architecture</span>, <span class="highlight">Systems Integration</span>, and <span class="highlight">Data Modeling</span>, with proficiency in <span class="highlight">Python</span>, <span class="highlight">JavaScript</span>, and <span class="highlight">REST APIs</span>.
973972
</p>

css/about.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ body {
7878
height: 100%;
7979
min-height: 500px;
8080
}
81+
.about-side-title h1,
8182
.about-side-title h2 {
8283
position: absolute;
8384
top: 25px;

css/projects.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ body {
1919
padding-top: 0;
2020
margin-top: 0;
2121
}
22+
.projects-side-title h1,
2223
.projects-side-title h2 {
2324
font-size: 2.5rem;
2425
font-weight: 700;

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,9 +1139,9 @@
11391139
</div>
11401140
<div class="header-content" aria-label="Professional profile header">
11411141
<div class="header-content-box">
1142-
<h1 class="firstline"><span class="color">Patrick Araujo</span></h1>
1143-
<div class="secondline">
1144-
<h2 class="main-info" style="margin:0; font-weight:inherit; font-size:inherit; line-height:inherit;">Solutions Architect (Technical Owner)<br>| Systems Design | Interoperability | Technical Leadership</h2>
1142+
<h1 class="firstline"><span class="color">Patrick Araujo</span></h1>
1143+
<div class="secondline">
1144+
<h2 class="main-info" style="margin:0; font-weight:inherit; font-size:inherit; line-height:inherit;">Solutions Architect (Technical Owner)<br>| Systems Design | Interoperability | Technical Leadership</h2>
11451145
<div class="remote-text">
11461146
Architecting Scalable Backend Systems and Intelligent AI-Driven Solutions.
11471147
</div>

projects.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,9 +466,8 @@
466466
<div id="projects" aria-label="Projects showcase">
467467
<div class="projects-container">
468468
<div class="projects-side-title">
469-
<h1 style="position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;">Projects Portfolio</h1>
470-
<h2>Featured <span class="color">Projects</span></h2>
471-
</div>
469+
<h1>Featured <span class="color">Projects</span></h1>
470+
</div>
472471

473472
<div class="projects-content-wrapper" aria-label="Project grid">
474473
<div class="projects-grid">

sitemap.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,26 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://pklavc.github.io/</loc>
5-
<lastmod>2026-01-06</lastmod>
5+
<lastmod>2026-04-09</lastmod>
66
<changefreq>weekly</changefreq>
77
<priority>1.0</priority>
88
</url>
99
<url>
1010
<loc>https://pklavc.github.io/about.html</loc>
11-
<lastmod>2026-01-06</lastmod>
11+
<lastmod>2026-04-09</lastmod>
1212
<changefreq>monthly</changefreq>
1313
<priority>0.8</priority>
1414
</url>
1515
<url>
1616
<loc>https://pklavc.github.io/projects.html</loc>
17-
<lastmod>2026-01-06</lastmod>
17+
<lastmod>2026-04-09</lastmod>
1818
<changefreq>weekly</changefreq>
1919
<priority>0.8</priority>
2020
</url>
21+
<url>
22+
<loc>https://pklavc.github.io/404.html</loc>
23+
<lastmod>2026-04-09</lastmod>
24+
<changefreq>yearly</changefreq>
25+
<priority>0.1</priority>
26+
</url>
2127
</urlset>

0 commit comments

Comments
 (0)