forked from gauravsingh1281/Rentalog.in--Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (71 loc) · 3.29 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Rentalog is a powerful rent management web application designed for landlords. Easily track tenant information, monitor rental payments, and manage properties efficiently."
/>
<meta name="keywords" content="rental management, landlord tools, tenant tracking, rent payment, property management" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Rentalog | Rent Management App for Landlords" />
<meta property="og:description" content="Manage your rental properties efficiently with Rentalog. Track tenants, payments, and more!" />
<meta property="og:image" content="/path/to/image.jpg" />
<meta property="og:url" content="https://www.yourwebsite.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Rentalog | Rent Management App for Landlords" />
<meta name="twitter:description" content="Manage your rental properties efficiently with Rentalog. Track tenants, payments, and more!" />
<meta name="twitter:image" content="/path/to/image.jpg" />
<!-- Preconnect for Performance Optimization -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- FontAwesome for Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Mouse Follower CSS (If required) -->
<link rel="stylesheet" href="https://unpkg.com/mouse-follower@1/dist/mouse-follower.min.css" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<!-- Title -->
<title>Rentalog | Rent Management App for Landlords | Track Tenants & Payments</title>
</head>
<body>
<!-- React Root -->
<div id="root"></div>
<!-- React App Script -->
<script type="module" src="./index.jsx"></script>
<!-- Chatbot Configuration -->
<script>
window.embeddedChatbotConfig = {
chatbotId: "wQJs3fix9gu515zxNshBF",
domain: "www.chatbase.co"
};
</script>
<!-- Chatbot Script -->
<script
src="https://www.chatbase.co/embed.min.js"
chatbotId="wQJs3fix9gu515zxNshBF"
domain="www.chatbase.co"
defer
></script>
</body>
</html>