58 lines
2.6 KiB
HTML
58 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="../css/projectStyle.css">
|
||
<link rel="stylesheet" href="./css/project1Style.css">
|
||
<title>Coming Soon – Lew's Portfolio</title>
|
||
</head>
|
||
<body>
|
||
|
||
<header>
|
||
<div class="nav-bar">
|
||
<a href="../index.html"><img class="nav-logo" src="../images/icons/logo.svg" alt="lew's logo" width="180" height="auto"></a>
|
||
<nav>
|
||
<ul class="nav-links">
|
||
<li><a href="../index.html">Home</a></li>
|
||
<li><a href="../projects.html">Projects</a></li>
|
||
<li><a href="../index.html#contact">Contact</a></li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</header>
|
||
|
||
<main class="project-detail">
|
||
|
||
<div class="coming-soon-wrapper">
|
||
<div class="coming-soon-icon" aria-hidden="true">
|
||
<svg viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
|
||
<circle cx="40" cy="40" r="36" fill="none" stroke="var(--clr-primary)" stroke-width="3" stroke-dasharray="8 5"/>
|
||
<text x="40" y="46" text-anchor="middle" font-size="28" fill="var(--clr-accent-light)">🚧</text>
|
||
</svg>
|
||
</div>
|
||
<h1>Under Construction</h1>
|
||
<p>Something new is being built here. Check back soon!</p>
|
||
<a href="../projects.html" class="btn-secondary">← Back to Projects</a>
|
||
</div>
|
||
|
||
</main>
|
||
|
||
<footer>
|
||
<p>© 2024 LewisPriceDev, All rights reserved.</p>
|
||
<div class="social-links">
|
||
<a href="https://www.linkedin.com/in/lewis-price-a79185195/" target="_blank" aria-label="LinkedIn">
|
||
<img src="../images/icons/linkedin-icon.svg" alt="">
|
||
</a>
|
||
<a class="mail-img" href="mailto:lewis.e.price@outlook.com">
|
||
<img src="../images/icons/mail_icon.svg" alt="lewis.price@outlook.com">
|
||
</a>
|
||
</div>
|
||
</footer>
|
||
|
||
</body>
|
||
</html>
|