1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > Redirecting to JobFit</ title >
7+ < meta http-equiv ="refresh " content ="0;url=https://hxndev.github.io/JobFit/ " />
8+ < style >
9+ body {
10+ font-family : -apple-system, BlinkMacSystemFont, 'Segoe UI' , Roboto, Helvetica, Arial, sans-serif;
11+ display : flex;
12+ flex-direction : column;
13+ align-items : center;
14+ justify-content : center;
15+ height : 100vh ;
16+ margin : 0 ;
17+ padding : 20px ;
18+ text-align : center;
19+ background : linear-gradient (to bottom, # 1f2833, # 0b0c10 );
20+ color : white;
21+ }
22+ .loader {
23+ border : 5px solid rgba (255 , 255 , 255 , 0.2 );
24+ border-radius : 50% ;
25+ border-top : 5px solid # 9B00FF ;
26+ border-bottom : 5px solid # 00F5FF ;
27+ width : 50px ;
28+ height : 50px ;
29+ animation : spin 1s linear infinite;
30+ margin-bottom : 20px ;
31+ }
32+ @keyframes spin {
33+ 0% { transform : rotate (0deg ); }
34+ 100% { transform : rotate (360deg ); }
35+ }
36+ h1 {
37+ font-size : 2rem ;
38+ margin-bottom : 0.5rem ;
39+ background : linear-gradient (45deg , # 9B00FF, # 00F5FF );
40+ -webkit-background-clip : text;
41+ -webkit-text-fill-color : transparent;
42+ }
43+ p {
44+ margin-bottom : 1.5rem ;
45+ max-width : 500px ;
46+ opacity : 0.8 ;
47+ }
48+ a {
49+ color : # 00F5FF ;
50+ text-decoration : none;
51+ font-weight : bold;
52+ }
53+ a : hover {
54+ text-decoration : underline;
55+ }
56+ </ style >
57+ </ head >
58+ < body >
59+ < div class ="loader "> </ div >
60+ < h1 > Redirecting to JobFit</ h1 >
61+ < p > You are being redirected to the JobFit application. If you are not redirected automatically, please click the link below:</ p >
62+ < a href ="https://hxndev.github.io/JobFit/ "> Go to JobFit Application</ a >
63+ < script >
64+ // JavaScript fallback redirect
65+ window . location . href = "https://hxndev.github.io/JobFit/" ;
66+ </ script >
67+ </ body >
68+ </ html >
0 commit comments