-
Notifications
You must be signed in to change notification settings - Fork 0
/
libraries.html
119 lines (112 loc) · 6.34 KB
/
libraries.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Imhotep Tech - Custom Software Development & Web Applications</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets and Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="static/app.css"> <!-- Adjusted to static file -->
<link rel="shortcut icon" href="static/it.ico"> <!-- Adjusted to static file -->
<!-- SEO and Meta -->
<meta name="description" content="Imhotep Tech - Custom software and web application development services. Contact us to streamline your business.">
<meta name="keywords" content="custom software development, web application, Egypt, Imhotep Tech, small business solutions, clinic software, currency converter, financial manager app">
<meta property="og:title" content="Imhotep Tech - Custom Software Development & Web Applications">
<meta property="og:description" content="We develop custom software & web applications to streamline your business operations. Contact us now!">
<meta property="og:image" content="https://imhoteptech.vercel.app/static/it.png">
<meta property="og:url" content="https://imhoteptech.vercel.app">
<link rel="canonical" href="https://imhoteptech.vercel.app/">
<meta name="robots" content="index, follow">
<meta name="author" content="Imhotep Tech">
<meta name="google-site-verification" content="5VWhaKmsV5Wzrdko3_Si5vVnmNsMDttsJFA04mFxrsE" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">Imhotep Tech</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a href="/libraries.html" class="nav-link">Libraries / APIs</a> <!-- Changed to .html -->
</li>
<li class="nav-item">
<a href="/about_me.html" class="nav-link">The Founder</a> <!-- Changed to .html -->
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<h1 class="text-center mb-4">Imhotep Libraries / APIs</h1>
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h2 class="card-title">Imhotep Files Flask</h2>
<p class="card-text">This Python library simplifies file upload and deletion operations in web applications using Flask or similar frameworks.</p>
<a href="https://github.com/Imhotep-Tech/imhotep_files_flask" class="btn btn-outline-dark" target="_blank">
<i class="fab fa-github"></i> View on GitHub
</a>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h2 class="card-title">Imhotep Mail</h2>
<p class="card-text">This is a simple Python library for sending emails. It provides an easy way to configure and send emails from any Python code.</p>
<a href="https://github.com/Imhotep-Tech/imhotep_mail" class="btn btn-outline-dark" target="_blank">
<i class="fab fa-github"></i> View on GitHub
</a>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<h2 class="card-title">Imhotep Exchange Rates API</h2>
<p class="card-text">This API is Simply a currency conversion API with Unlimited Requests, free to use, update every 3 hours.</p>
<a href="https://github.com/Imhotep-Tech/imhotep_currency_rates_api" class="btn btn-outline-dark" target="_blank">
<i class="fab fa-github"></i> View on GitHub
</a>
<a href="https://imhotepexchangeratesapi.pythonanywhere.com/" class="btn btn-outline-dark ms-2" target="_blank">
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-5 p-4 bg-dark text-white text-center">
<div class="row">
<div class="col-md-6">
<p>© 2023-2024 Imhotep Tech. All rights reserved.</p>
</div>
<div class="col-md-6">
<div class="d-flex justify-content-end align-items-center">
<p class="mb-0">Contact us:</p>
<a href="mailto:imhoteptech@outlook.com" class="footer-icon">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.instagram.com/imhotep_tech?igsh=YXV0Y24xZnNveDQ5" target="_blank" class="footer-icon">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/Imhoteptech1?t=E5JmfSp5WpyZaWkDzILpKw&s=09" target="_blank" class="footer-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/Imhotep-Tech" target="_blank" class="footer-icon">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>