-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 2.59 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simpeta Technologies</title>
<link rel="icon" type="image/svg" href="./img/favicon.svg">
<link rel="stylesheet" href="./css/index.css">
</head>
<script src="./js/index.js"></script>
<body>
<div class="main-content">
<div class="basic-info-block">
<img class="logo" src="./img/logo.svg" alt="simpeta-logo" />
<img class="name invert-on-dark" src="./img/name.svg" alt="Simpeta Technologies" />
<img class="slogan invert-on-dark" src="./img/slogan.svg" alt="Simple by Design, Efficient by Default" />
<a class="github-button" href="https://github.com/simpeta" target="_blank">
<img src="./img/github.svg" alt="GitHub Logo" />
<span>Visit us on GitHub</span>
</a>
</div>
</div>
<button class="theme-toggle" aria-label="Change Theme">
<svg class="sun-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M12 2.25a.75.75 0 01.75.75v2.25a.75.75 0 01-1.5 0V3a.75.75 0 01.75-.75zM7.5 12a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM12 21.75a.75.75 0 01-.75-.75v-2.25a.75.75 0 011.5 0V21a.75.75 0 01-.75.75zM2.25 12a.75.75 0 01.75-.75h2.25a.75.75 0 010 1.5H3a.75.75 0 01-.75-.75zM21.75 12a.75.75 0 01-.75.75h-2.25a.75.75 0 010-1.5H21a.75.75 0 01.75.75zM5.636 5.636a.75.75 0 011.06 0l1.592 1.591a.75.75 0 01-1.061 1.06l-1.591-1.59a.75.75 0 010-1.061zM18.364 18.364a.75.75 0 01-1.06 0l-1.591-1.591a.75.75 0 011.06-1.061l1.591 1.591a.75.75 0 010 1.061zM18.364 5.636a.75.75 0 010 1.061l-1.591 1.591a.75.75 0 11-1.061-1.06l1.591-1.592a.75.75 0 011.061 0zM5.636 18.364a.75.75 0 010-1.061l1.591-1.591a.75.75 0 111.061 1.06l-1.592 1.592a.75.75 0 01-1.06 0z"/>
</svg>
<svg class="moon-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
</svg>
</button>
<footer>
<div class="legal-info-block">
<div>
<img height="18px" style="vertical-align: middle;" src="./img/logo.svg" alt="simpeta-logo" />
<span style="vertical-align: middle; font-size: 15px;"> © 2025 Simpeta Technologies</span>
</div>
<span style="font-size: 14px;">The brand name, logo, and slogan are proprietary. Unauthorized use prohibited.</span>
</div>
</footer>
</body>