Initial commit 🌟

This commit is contained in:
Mohammed Al-yaseen
2025-04-06 20:03:35 +03:00
commit fbd966a3fd
34 changed files with 5884 additions and 0 deletions

42
src/app/page.module.css Normal file
View File

@@ -0,0 +1,42 @@
/* File: src/styles/Home.module.css */
.main {
width: 100%;
overflow-x: hidden;
background-color: #fafafa;
}
.loaderContainer {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #42475C 0%, #20222F 100%);
}
.loaderText {
margin-top: 20px;
color: white;
opacity: 0.8;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}
.section {
padding: 80px 16px;
position: relative;
overflow: hidden;
}
@media (max-width: 768px) {
.section {
padding: 60px 16px;
}
}