Skip to content

Commit d0ecbfa

Browse files
authored
Merge pull request #18 from arist76/feature/components-and-pages
Frontend: Decompose Monolithic UI into a Page-Based Architecture
2 parents bcbbbf2 + 087c712 commit d0ecbfa

55 files changed

Lines changed: 5727 additions & 2190 deletions

Some content is hidden

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

frontend/eslint.config.mjs

Lines changed: 0 additions & 14 deletions
This file was deleted.

frontend/index.html

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<meta name="theme-color" content="#000000" />
7-
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
8-
<title>MeTTa KG</title>
9-
</head>
10-
<body>
11-
<noscript>You need to enable JavaScript to run this app.</noscript>
12-
<div id="root"></div>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="theme-color" content="#000000" />
7+
<link
8+
rel="shortcut icon"
9+
type="image/ico"
10+
href="/src/assets/favicon.ico"
11+
/>
12+
<title>MeTTa KG</title>
13+
</head>
14+
<body>
15+
<noscript>You need to enable JavaScript to run this app.</noscript>
16+
<div id="root"></div>
1317

14-
<script src="/src/index.tsx" type="module"></script>
15-
</body>
18+
<script src="/src/index.tsx" type="module"></script>
19+
</body>
1620
</html>

frontend/pnpm-lock.yaml

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

0 commit comments

Comments
 (0)