Skip to content

Commit 10294e7

Browse files
feat (landing) added keka login page
1 parent b87fe81 commit 10294e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+12335
-0
lines changed

kekaAutlogin/assets/index-CAJE3vm5.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kekaAutlogin/assets/index-DYaxoNz0.js

Lines changed: 335 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kekaAutlogin/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Keka Auto Clock-In Chrome Extension | Automate HR Attendance Management</title>
8+
<meta name="description"
9+
content="Professional Chrome extension for automated Keka attendance management. Never miss clock-in or clock-out again. Smart scheduling, automatic updates, and real-time notifications. Lifetime access for $10." />
10+
<meta name="author" content="Keka Auto Clock" />
11+
<meta name="keywords"
12+
content="Keka attendance automation, Chrome extension, HR attendance, automatic clock-in, clock-out automation, Keka integration, employee attendance software, time tracking automation" />
13+
<link rel="canonical" href="https://lovable.app/" />
14+
15+
<!-- Open Graph / Facebook -->
16+
<meta property="og:type" content="website" />
17+
<meta property="og:title" content="Keka Auto Clock-In Chrome Extension | Automate HR Attendance" />
18+
<meta property="og:description"
19+
content="Professional Chrome extension for automated Keka attendance management. Smart scheduling, automatic updates, and real-time notifications." />
20+
<meta property="og:url" content="https://lovable.app/" />
21+
22+
<!-- Twitter -->
23+
<meta name="twitter:card" content="summary_large_image" />
24+
<meta name="twitter:title" content="Keka Auto Clock-In Chrome Extension" />
25+
<meta name="twitter:description"
26+
content="Automate your Keka attendance with professional Chrome extension. Lifetime access for $10." />
27+
<meta name="twitter:site" content="@lovable_dev" />
28+
29+
<!-- Open Graph Image -->
30+
<script type="module" crossorigin src="./assets/index-DYaxoNz0.js"></script>
31+
<link rel="stylesheet" crossorigin href="./assets/index-CAJE3vm5.css">
32+
</head>
33+
34+
<body>
35+
<div id="root"></div>
36+
37+
<!-- Structured Data for SEO -->
38+
<script type="application/ld+json">
39+
{
40+
"@context": "https://schema.org",
41+
"@type": "SoftwareApplication",
42+
"name": "Keka Auto Clock-In Extension",
43+
"applicationCategory": "BrowserApplication",
44+
"operatingSystem": "Chrome",
45+
"offers": {
46+
"@type": "Offer",
47+
"price": "10.00",
48+
"priceCurrency": "USD",
49+
"availability": "https://schema.org/InStock"
50+
},
51+
"aggregateRating": {
52+
"@type": "AggregateRating",
53+
"ratingValue": "5",
54+
"ratingCount": "1"
55+
},
56+
"description": "Professional Chrome extension for automated Keka attendance management. Never miss clock-in or clock-out again with smart scheduling and automatic updates."
57+
}
58+
</script>
59+
</body>
60+
61+
</html>

kekaAutlogin/placeholder.svg

Lines changed: 1 addition & 0 deletions
Loading

kekaAutlogin/react-page/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

kekaAutlogin/react-page/bun.lockb

193 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/index.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
}
20+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
23+
"@typescript-eslint/no-unused-vars": "off",
24+
},
25+
},
26+
);

kekaAutlogin/react-page/index.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Keka Auto Clock-In Chrome Extension | Automate HR Attendance Management</title>
7+
<meta name="description" content="Professional Chrome extension for automated Keka attendance management. Never miss clock-in or clock-out again. Smart scheduling, automatic updates, and real-time notifications. Lifetime access for $10." />
8+
<meta name="author" content="Keka Auto Clock" />
9+
<meta name="keywords" content="Keka attendance automation, Chrome extension, HR attendance, automatic clock-in, clock-out automation, Keka integration, employee attendance software, time tracking automation" />
10+
<link rel="canonical" href="https://lovable.app/" />
11+
12+
<!-- Open Graph / Facebook -->
13+
<meta property="og:type" content="website" />
14+
<meta property="og:title" content="Keka Auto Clock-In Chrome Extension | Automate HR Attendance" />
15+
<meta property="og:description" content="Professional Chrome extension for automated Keka attendance management. Smart scheduling, automatic updates, and real-time notifications." />
16+
<meta property="og:url" content="https://lovable.app/" />
17+
18+
<!-- Twitter -->
19+
<meta name="twitter:card" content="summary_large_image" />
20+
<meta name="twitter:title" content="Keka Auto Clock-In Chrome Extension" />
21+
<meta name="twitter:description" content="Automate your Keka attendance with professional Chrome extension. Lifetime access for $10." />
22+
<meta name="twitter:site" content="@lovable_dev" />
23+
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
24+
25+
<!-- Open Graph Image -->
26+
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
27+
</head>
28+
29+
<body>
30+
<div id="root"></div>
31+
<script type="module" src="/src/main.tsx"></script>
32+
33+
<!-- Structured Data for SEO -->
34+
<script type="application/ld+json">
35+
{
36+
"@context": "https://schema.org",
37+
"@type": "SoftwareApplication",
38+
"name": "Keka Auto Clock-In Extension",
39+
"applicationCategory": "BrowserApplication",
40+
"operatingSystem": "Chrome",
41+
"offers": {
42+
"@type": "Offer",
43+
"price": "10.00",
44+
"priceCurrency": "USD",
45+
"availability": "https://schema.org/InStock"
46+
},
47+
"aggregateRating": {
48+
"@type": "AggregateRating",
49+
"ratingValue": "5",
50+
"ratingCount": "1"
51+
},
52+
"description": "Professional Chrome extension for automated Keka attendance management. Never miss clock-in or clock-out again with smart scheduling and automatic updates."
53+
}
54+
</script>
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)