fix about page

This commit is contained in:
2026-06-18 19:48:20 +05:30
parent 8e0d704438
commit 9768eabe4d
163 changed files with 20461 additions and 23 deletions

38
test-wow-slanted.html Normal file
View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; padding: 0; background: #fff; overflow-x: hidden; }
.marquee { height: 100px; background: #45BDDE; color: #fff; font-size: 40px; }
.slanted-wrapper {
position: relative;
width: 100%;
margin-top: -30px;
}
.slanted-top {
width: 110%;
margin-left: -5%;
height: 100px;
background: #111;
transform: rotate(-2.07deg);
transform-origin: center;
}
.wow-section {
position: relative;
background: #111;
margin-top: -50px;
padding-top: 50px;
color: white;
}
</style>
</head>
<body>
<div class="marquee">Artificial Intelligence</div>
<div class="slanted-wrapper">
<div class="slanted-top"></div>
</div>
<div class="wow-section">
<div style="max-width: 1340px; margin: 0 auto;">WOW! Meet the next evolution</div>
</div>
</body>
</html>