diff --git a/frontend/src/components/RoundIconButton.svelte b/frontend/src/components/RoundIconButton.svelte
index 5e853df..41fbcb8 100644
--- a/frontend/src/components/RoundIconButton.svelte
+++ b/frontend/src/components/RoundIconButton.svelte
@@ -101,6 +101,7 @@
display: inline-block;
margin: 0;
border:none;
+ cursor: pointer;
}
button:hover{
box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.25) inset;
diff --git a/frontend/src/components/RoundedButton.svelte b/frontend/src/components/RoundedButton.svelte
new file mode 100644
index 0000000..c37bb4f
--- /dev/null
+++ b/frontend/src/components/RoundedButton.svelte
@@ -0,0 +1,61 @@
+
+
+
+ { text }
+
\ No newline at end of file
diff --git a/frontend/src/components/Settings.svelte b/frontend/src/components/Settings.svelte
index 7b0f0a2..d4a5fc2 100644
--- a/frontend/src/components/Settings.svelte
+++ b/frontend/src/components/Settings.svelte
@@ -1 +1,23 @@
-
Project settings
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/components/Tab.svelte b/frontend/src/components/Tab.svelte
new file mode 100644
index 0000000..e8810d0
--- /dev/null
+++ b/frontend/src/components/Tab.svelte
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+ {#if tabs[activeTab]}
+
+ {/if}
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/components/Tooltip.svelte b/frontend/src/components/Tooltip.svelte
index 7e64f16..c2bed92 100644
--- a/frontend/src/components/Tooltip.svelte
+++ b/frontend/src/components/Tooltip.svelte
@@ -39,6 +39,6 @@
p{
margin:5px;
- font-size: 10px;
+ font-size: 13px;
}
\ No newline at end of file
diff --git a/frontend/src/lang/en.json b/frontend/src/lang/en.json
index 81dbbe4..1687719 100644
--- a/frontend/src/lang/en.json
+++ b/frontend/src/lang/en.json
@@ -6,5 +6,14 @@
"showMenuTooltip": "Show mapping",
"consoleMenuTooltip": "General console",
"stageRenderingToggleTooltip": "Show/hide the rendering view",
- "showActivationToggleTooltip": "Activate/Deactivate the play mode"
+ "showActivationToggleTooltip": "Activate/Deactivate the play mode",
+
+ "newProjectString": "New",
+ "openProjectString": "Open",
+ "newProjectTooltip": "Create a new project",
+ "openProjectTooltip": "Open an existing project",
+ "projectPropertiesTab": "Project properties",
+ "projectPropertiesTooltip": "The project properties",
+ "projectInputOutputTab": "Inputs & outputs",
+ "projectInputOutputTooltip": "The input/output hardware definition"
}