Rename app to Lemma

This commit is contained in:
2024-12-19 23:59:27 +01:00
parent 5598c0861d
commit b6b4c01f0e
70 changed files with 262 additions and 263 deletions

10
app/package-lock.json generated
View File

@@ -1,11 +1,11 @@
{
"name": "novamd-frontend",
"name": "lemma-frontend",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "novamd-frontend",
"name": "lemma-frontend",
"version": "0.1.0",
"license": "Apache-2.0",
"dependencies": {
@@ -4170,9 +4170,9 @@
"license": "MIT"
},
"node_modules/nanoid": {
"version": "3.3.7",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
"integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
"version": "3.3.8",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
"dev": true,
"funding": [
{

View File

@@ -1,5 +1,5 @@
{
"name": "novamd-frontend",
"name": "lemma-frontend",
"version": "0.1.0",
"description": "Yet another markdown editor",
"type": "module",
@@ -10,7 +10,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/LordMathis/NovaMD.git"
"url": "git+https://github.com/LordMathis/Lemma.git"
},
"keywords": [
"markdown",
@@ -19,9 +19,9 @@
"author": "Matúš Námešný",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LordMathis/NovaMD/issues"
"url": "https://github.com/LordMathis/Lemma/issues"
},
"homepage": "https://github.com/LordMathis/NovaMD#readme",
"homepage": "https://github.com/LordMathis/Lemma#readme",
"dependencies": {
"@codemirror/commands": "^6.6.2",
"@codemirror/lang-markdown": "^6.2.5",

View File

@@ -29,7 +29,7 @@ const LoginPage = () => {
return (
<Container size={420} my={40}>
<Title ta="center">Welcome to NovaMD</Title>
<Title ta="center">Welcome to Lemma</Title>
<Text c="dimmed" size="sm" ta="center" mt={5}>
Please sign in to continue
</Text>

View File

@@ -8,7 +8,7 @@ const Header = () => {
return (
<Group justify="space-between" h={60} px="md">
<Text fw={700} size="lg">
NovaMD
Lemma
</Text>
<Group>
<WorkspaceSwitcher />

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NovaMD</title>
<title>Lemma</title>
</head>
<body>
<div id="root"></div>

View File

@@ -47,7 +47,7 @@ export const DEFAULT_WORKSPACE = {
export const DEFAULT_FILE = {
name: 'New File.md',
path: 'New File.md',
content: '# Welcome to NovaMD\n\nStart editing here!',
content: '# Welcome to Lemma\n\nStart editing here!',
};
export const MARKDOWN_REGEX = {