Skip to content
Open

new #341

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed dist/assets/img/favicon.ico
Binary file not shown.
Binary file removed dist/assets/img/profile.jpg
Binary file not shown.
10,972 changes: 0 additions & 10,972 deletions dist/css/styles.css

This file was deleted.

225 changes: 0 additions & 225 deletions dist/index.html

This file was deleted.

34 changes: 0 additions & 34 deletions dist/js/scripts.js

This file was deleted.

127 changes: 127 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ATLAS STACK</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet" />
<style>
:root {
--bg: #0d1117;
--card: #161b22;
--text: #e6edf3;
--muted: #8b949e;
--accent: #00a2ff;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
}
header {
text-align: center;
padding: 90px 20px 40px;
}
header h1 {
font-size: 54px;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 8px;
color: var(--accent);
}
header h2 {
font-size: 20px;
font-weight: 400;
color: var(--muted);
}
section {
max-width: 850px;
margin: 0 auto;
padding: 40px 20px;
}
h3 {
font-size: 28px;
font-weight: 600;
margin-bottom: 18px;
color: var(--accent);
}
.card {
background: var(--card);
padding: 25px;
border-radius: 10px;
box-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.services ul {
list-style: none;
padding: 0;
margin: 0;
}
.services ul li {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.07);
margin: 10px 0;
padding: 14px 18px;
border-radius: 6px;
transition: 0.2s;
}
.services ul li:hover {
border-color: var(--accent);
color: var(--accent);
}
.contact a {
display: inline-block;
margin-top: 12px;
font-size: 18px;
color: var(--accent);
text-decoration: none;
font-weight: 600;
transition: 0.2s;
}
.contact a:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<header>
<h1>ATLAS STACK</h1>
<h2>Founder & Director — Hammad Musawar</h2>
</header>

<section>
<div class="card">
<h3>About</h3>
<p>
ATLAS STACK delivers scalable cloud, data and software solutions for modern businesses.
We design and build reliable, efficient and growth-focused systems — built with
clarity, strong architecture, and real-world impact.
</p>
</div>
</section>

<section class="services">
<div class="card">
<h3>Services</h3>
<ul>
<li>Cloud Architecture & Deployment (AWS)</li>
<li>Data Engineering & Pipelines</li>
<li>Software & API Development</li>
<li>Automation & System Integration</li>
<li>Technical Consulting & Engineering Support</li>
</ul>
</div>
</section>

<section class="contact">
<div class="card">
<h3>Contact</h3>
<p>For collaboration, project enquiries or consulting, feel free to reach out.</p>
<a href="mailto:[email protected]">Email: [email protected]</a><br>
<a href="https://www.linkedin.com/in/hammad-musawar-794a3a1a0">LinkedIn Profile</a>
</div>
</section>
</body>
</html>
5 changes: 0 additions & 5 deletions scripts/build-assets.js

This file was deleted.

Loading