diff --git a/web/dashboard.templ b/web/dashboard.templ
index f4fad21..67a20e7 100644
--- a/web/dashboard.templ
+++ b/web/dashboard.templ
@@ -14,7 +14,7 @@ templ dashboard() {
@@ -22,7 +22,7 @@ templ dashboard() {
@@ -66,7 +66,7 @@ templ dashboard() {
diff --git a/web/data_endpoints.go b/web/data_endpoints.go
index c66f4a3..000b63e 100644
--- a/web/data_endpoints.go
+++ b/web/data_endpoints.go
@@ -39,6 +39,18 @@ func getTransactionsRows(w http.ResponseWriter, req *http.Request) {
component.Render(context.Background(), w);
}
+func getTransactionQuickAccess(w http.ResponseWriter, req *http.Request) {
+ component := transaction_quick_access();
+ component.Render(context.Background(), w);
+
+}
+
+func getRightPanelQuickAccess(w http.ResponseWriter, req *http.Request) {
+ component := right_panel_quick_access();
+ component.Render(context.Background(), w);
+
+}
+
func getExpenditureChart(w http.ResponseWriter, req *http.Request) {
data_package := struct{
Labels []string `json:"labels"`
diff --git a/web/dataendpoints.templ b/web/dataendpoints.templ
index 4119418..1dc0b79 100644
--- a/web/dataendpoints.templ
+++ b/web/dataendpoints.templ
@@ -37,7 +37,7 @@ templ account_summary_rows(accounts *[]types.TwoIntsItem){
@@ -56,3 +56,14 @@ templ account_summary_rows(accounts *[]types.TwoIntsItem){
}
}
+
+templ transaction_quick_access() {
+