Skip to content

Commit 21c1b98

Browse files
committed
fix(imports): correct case-sensitive import statements for Windows
- customize Flowbite template with project-specific data and links - add custom favicons
1 parent 7f4078e commit 21c1b98

File tree

19 files changed

+83
-27
lines changed

19 files changed

+83
-27
lines changed

frontend/index.html

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,52 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>AI Api Tester Application</title>
7+
8+
<!-- Primary Meta Tags -->
9+
<title>AI API Tester - Test Your APIs Effortlessly</title>
10+
<meta
11+
name="description"
12+
content="AI API Tester is a powerful application to generate, run, and manage API test cases automatically for developers."
13+
/>
14+
<meta
15+
name="keywords"
16+
content="API testing, AI tester, automated API testing, developer tools, test cases"
17+
/>
18+
<meta name="Eddy Seed" content="Full Stack Web Developer" />
19+
20+
<!-- Favicon -->
21+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
22+
23+
<!-- Theme color for mobile browsers -->
24+
<meta name="theme-color" content="#1e293b" />
25+
26+
<!-- Open Graph / Social Media -->
27+
<meta
28+
property="og:title"
29+
content="AI API Tester - Test Your APIs Effortlessly"
30+
/>
31+
<meta
32+
property="og:description"
33+
content="AI API Tester helps developers generate and run API test cases automatically using AI-powered tools."
34+
/>
35+
<meta property="og:type" content="website" />
36+
<!-- <meta property="og:url" content="https://yourwebsite.com" /> -->
37+
<meta property="og:image" content="/favicon-32x32.png" />
38+
39+
<!-- Twitter Card -->
40+
<meta name="twitter:card" content="summary_large_image" />
41+
<meta
42+
name="twitter:title"
43+
content="AI API Tester - Test Your APIs Effortlessly"
44+
/>
45+
<meta
46+
name="twitter:description"
47+
content="AI API Tester helps developers generate and run API test cases automatically using AI-powered tools."
48+
/>
49+
<meta name="twitter:image" content="/favicon-32x32.png" />
850
</head>
951
<body>
1052
<div id="root"></div>
7.74 KB
Loading
19.2 KB
Loading
6.93 KB
Loading

frontend/public/favicon-16x16.png

660 Bytes
Loading

frontend/public/favicon-32x32.png

1.52 KB
Loading

frontend/public/favicon.ico

15 KB
Binary file not shown.

frontend/public/site.webmanifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

frontend/public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

frontend/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function App() {
1919
<LoadingProvider>
2020
<Navbar01 />
2121
<SchemaPage />
22-
<TestDetailsPane />
22+
<TestDetailsPane/>
2323
<TestRunner />
2424
<Dashboard />
2525
</LoadingProvider>

0 commit comments

Comments
 (0)