generated from ShayanTheNerd/budgetly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 2.3 KB
/
index.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
<!-- prettier-ignore -->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<!-- prettier-ignore -->
<head>
<meta charset="UTF-8" />
<title>Job Listings - Find the job you need!</title>
<meta name="theme-color" content="#effafa" />
<meta name="copyright" content="Shayan Zamani, 2023" />
<meta name="author" content="Shayan Zamani, sh.zamani384@gmail.com" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="keywords" content="job listings with filters, free job search, find the right job for you" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Job Listings" />
<meta property="og:site_name" content="shayan-zamani.me" />
<meta property="og:url" content="https://animated-job-listings.netlify.app" />
<meta property="og:image" content="/images/og-img.webp" />
<meta property="og:image:type" content="webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Job Listings" />
<meta property="og:description" name="description" content="Job Listings is a Frontend Mentor challenge designed for easily finding the job you need. Use tags to filter out the list and find the right job for you." />
<meta name="twitter:title" content="Job Listings" />
<meta name="twitter:site" content="shayan-zamani.me" />
<meta name="twitter:creator" content="@ShayanTheNerd">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="/images/og-img.webp" />
<meta name="twitter:image:alt" content="shayan-zamani.me" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon.png" />
<link rel="prefetch" href="/fonts/league-spartan-400.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
<link rel="prefetch" href="/fonts/league-spartan-700.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
<script type="module" src="./src/app.js"></script>
</head>
<body
class="overflow-x-hidden font-league-spartan text-charcoal antialiased selection:bg-darkCyan selection:text-whiteSmoke lg:overflow-y-hidden">
<div id="app" class="bg-lilacWhite"></div>
<noscript>JavaScript must be enabled for this website.</noscript>
</body>
</html>