-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (150 loc) · 4.92 KB
/
index.html
File metadata and controls
160 lines (150 loc) · 4.92 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Site Under Construction | NexGen</title>
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
width: 100vw;
overflow: hidden;
}
body {
min-height: 100vh;
min-width: 100vw;
width: 100vw;
height: 100vh;
overflow: hidden;
background: url('./temp_bg.png') no-repeat center center fixed;
background-size: cover;
filter: blur(0px);
position: relative;
}
.bg-blur {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
pointer-events: none;
background: url('./temp_bg.png') no-repeat center center fixed;
background-size: cover;
filter: blur(6px) brightness(0.85) saturate(1.1);
}
.main-content {
position: relative;
z-index: 1;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
pointer-events: none;
padding-bottom: 5rem;
/* Reserve more space for footer */
}
.main-img {
pointer-events: auto;
max-width: 100vw;
width: auto;
height: 100vh;
object-fit: contain;
display: block;
}
@media (max-width: 900px) {
.main-img {
width: 100vw;
max-width: 100vw;
height: auto;
max-height: calc(100vh - 48px);
}
}
@media (max-width: 600px) {
.main-img {
width: 130vw;
max-width: 130vw;
max-height: 70vh;
}
}
footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
text-align: center;
padding: 0.5rem 0;
background: rgba(0, 0, 0, 0.55);
color: #fff;
font-size: 1rem;
letter-spacing: 0.03em;
z-index: 10;
backdrop-filter: blur(2px);
font-family: sans-serif;
/* Remove fixed height so footer can grow with content */
line-height: 1.5rem;
}
</style>
</head>
<body>
<div class="bg-blur"></div>
<div class="main-content">
<img src="./temp.png" alt="Main" class="main-img" />
</div>
<!-- Footer -->
<footer className="footer-info-bar w-100">
<div className="container d-flex flex-column flex-md-row justify-content-between align-items-center mb-4">
<div className="d-flex align-items-center gap-4 left-contact-info mb-3 mb-md-0" style="gap: 0.5rem;">
<!-- <span className="d-flex align-items-center" style="gap: 0.5rem;">
<i className="fas fa-envelope-open"></i> info@nex-genparts.com
<a href="https://www.facebook.com/" target="_blank" rel="noopener noreferrer"><img src="../frontend/public/assets/icons8-facebook-48.png" width="28" height="28" alt="Facebook" style="vertical-align: middle; display: inline-block; margin-right: 6px;" /></a>
<a href="https://www.linkedin.com/" target="_blank" rel="noopener noreferrer"><img src="../frontend/public/assets/icons8-linkedin-48.png" width="28" height="28" alt="LinkedIn" style="vertical-align: middle; display: inline-block; margin-right: 6px;" /></a>
<a href="https://www.instagram.com/" target="_blank" rel="noopener noreferrer"><img src="../frontend/public/assets/icons8-instagram-48.png" width="28" height="28" alt="Instagram" style="vertical-align: middle; display: inline-block;" /></a>
</span> -->
</div>
<div className="d-flex align-items-center gap-3 right-contact-info">
</div>
</div>
<div className="container px-5 footer-bottom">
<div className="row align-items-center justify-content-between flex-column flex-sm-row">
<div className="col-auto d-flex align-items-center" style="gap: 0.5rem;">
<span className="small m-0">Copyright © NexGen Truck & Trailer Parts 2026</span>
<span className="mx-1 text-dark">·</span>
<a
className="small text-decoration-none"
href="https://computeranything.dev"
target="_blank"
rel="noopener noreferrer"
style="color: #fff;"
>
Powered by Computer Anything LLC
</a>
<span className="mx-1 text-dark">·</span>
<a
className="small text-dark text-decoration-none"
href="https://computeranything.dev"
target="_blank"
rel="noopener noreferrer"
>
<img
src="cpt-anything-transparent.png"
alt="Computer Anything Logo"
height="40"
style="vertical-align: middle; display: inline-block;"
/>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>