Skip to content

Commit a3eefa9

Browse files
authored
Merge pull request #542 from ajeetraina/modern-dockerlabs
Added Modern Look
2 parents d232ada + 9a64481 commit a3eefa9

File tree

20,787 files changed

+2622498
-479
lines changed

Some content is hidden

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

20,787 files changed

+2622498
-479
lines changed

README.md

Lines changed: 45 additions & 479 deletions
Large diffs are not rendered by default.

bun.lockb

194 KB
Binary file not shown.

components.json

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+
}

eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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": [
23+
"warn",
24+
{ allowConstantExport: true },
25+
],
26+
"@typescript-eslint/no-unused-vars": "off",
27+
},
28+
}
29+
);

index.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Docker Labs - Learn Docker Step by Step</title>
8+
<meta name="description" content="Interactive Docker tutorials and labs. Learn containerization with hands-on examples and step-by-step guides." />
9+
<meta name="keywords" content="Docker, containers, tutorial, learning, DevOps, containerization" />
10+
<meta name="author" content="Docker Labs" />
11+
12+
<meta property="og:title" content="Docker Labs - Learn Docker Step by Step" />
13+
<meta property="og:description" content="Interactive Docker tutorials and labs. Learn containerization with hands-on examples and step-by-step guides." />
14+
<meta property="og:type" content="website" />
15+
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
16+
17+
<meta name="twitter:card" content="summary_large_image" />
18+
<meta name="twitter:site" content="@docker" />
19+
<meta name="twitter:title" content="Docker Labs - Learn Docker Step by Step" />
20+
<meta name="twitter:description" content="Interactive Docker tutorials and labs. Learn containerization with hands-on examples." />
21+
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
22+
23+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
24+
</head>
25+
26+
<body>
27+
<div id="root"></div>
28+
<script type="module" src="/src/main.tsx"></script>
29+
</body>
30+
</html>

node_modules/.bin/acorn

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

node_modules/.bin/autoprefixer

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

node_modules/.bin/browserslist

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

node_modules/.bin/cssesc

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

node_modules/.bin/esbuild

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

0 commit comments

Comments
 (0)