Hello, {{ title }}
-Congratulations! Your app is running. 🎉
-diff --git a/src/app/app.component.css b/src/app/app.component.css
index e69de29..66b9b24 100644
--- a/src/app/app.component.css
+++ b/src/app/app.component.css
@@ -0,0 +1,39 @@
+/* General app layout */
+.app-container {
+ max-width: 1000px;
+ margin: 0 auto;
+ padding: 20px;
+ font-family: Arial, sans-serif;
+}
+
+/* Header */
+header {
+ text-align: center;
+ margin-bottom: 30px;
+}
+
+header h1 {
+ font-size: 2rem;
+ color: #2d3748;
+}
+
+/* Main content layout */
+main {
+ display: flex;
+ gap: 20px;
+}
+
+/* Left panel (Transactions) */
+.left-panel {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+}
+
+/* Right panel (Balance + Saving) */
+.right-panel {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+}
diff --git a/src/app/app.component.html b/src/app/app.component.html
index 36093e1..d660a6e 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -1,336 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
- Congratulations! Your app is running. 🎉Hello, {{ title }}
-
€{{ bal() }}
+ + + + + +Target: €{{ savingTarget() }}
+Saved: €{{ savings() }}
+ + + + + ++ Achieved {{ ((savings() / savingTarget()) * 100).toFixed(0) }}% of Savings + Goal:😎 +
+