Added about page

This commit is contained in:
2025-01-23 19:39:45 +01:00
parent 89e9b043e5
commit dfbf5be8cc
7 changed files with 223 additions and 1 deletions

View File

@@ -58,6 +58,22 @@ builder.Services.AddHopFrame(options => {
table.Property(p => p.SourceCode)
.List(false);
});
context.Table<About>(table => {
table.Property(a => a.AboutMe)
.List(false)
.IsTextArea(true);
table.Property(a => a.Future)
.List(false)
.IsTextArea(true);
});
context.Table<TimelineEntry>(table => {
table.Property(t => t.Description)
.IsTextArea(true)
.List(false);
});
});
});
builder.Services.AddRazorComponents()