-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
124 lines (105 loc) · 5.63 KB
/
landing.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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>JobsGuru.ai</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/landing.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nosifer&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nosifer&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<meta name="theme-color" content="#fafafa">
</head>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark" id="top-toolbar">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<img class="logo" id="dashboard-logo" src="img/logo.png" />
<ul class="navbar-nav">
<li id="dashboard-dark" class="dash-nav-item">
<a class="nav-link" href="#">Dashboard</a>
</li>
<li class="dash-nav-item">
<a class="nav-link" href="#">Start New App</a>
</li>
<li class="dash-nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
More
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Delete Profile</a></li>
<li><a class="dropdown-item" href="#">Contact The Team</a></li>
</ul>
</li>
<li class="dash-nav-item">
<a class="nav-link" href="#">Logout</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<body>
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<div class="box action-box">
<h3 class="action-box-title">Cover Letter and Interview Questions</h3>
<p class="action-box-text">Ready for us to craft your personalized cover letter for this position? We'll use AI to customize a cover letter that will resonate with hiring managers and display questions likely to be asked during the interview.</p>
<p class="status">Status: Incomplete</p>
<button type="button" class="btn btn-primary action-box-button">Run Cover Letter AI</button>
</div>
<div class="box action-box">
<h3 class="action-box-title">Match and Tweak Your Resume</h3>
<p class="action-box-text">Let us take your resume and the job description to analyze and generate a report on how well your resume matches the job requirements.</p>
<p class="status">Status: Incomplete</p>
<button type="button" class="btn btn-primary action-box-button">Run Match Report</button>
</div>
<div class="box action-box">
<h3 class="action-box-title">Mock Interview</h3>
<p class="action-box-text">Feel like you need a little extra practice before speaking to a hiring manager? Click below to schedule a mock interview with a member of our team to practice your interviewing skills using questions that will most likely be used in the actual interview.</p>
<p class="status">Status: Not Scheduled</p>
<button type="button" class="btn btn-primary action-box-button">Schedule Mock Interview Now</button>
</div>
</div>
<div class="col-md-8">
<div class="box job-score-box">
<h3 class="score-box-title">How Well Do You Match?</h3>
<p class="score-box-text">Here's your score based on our reports:</p>
</div>
</div>
</div>
</div>
</div>
<body>
<!-- Add your site or application content here -->
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>