feat: add Event interface, implement core Prisma seeding, and create admin categories management page
All checks were successful
Build and Push App / build (push) Successful in 11m4s

This commit is contained in:
2026-04-24 14:39:01 +02:00
parent 11678e0b33
commit 3c58e60b33
12 changed files with 176 additions and 592 deletions

View File

@@ -96,11 +96,13 @@ export interface Offer {
export interface BlogPost {
id: string;
title: string;
slug?: string;
excerpt: string;
content: string;
author: string;
date: string;
imageUrl: string;
tags?: string[];
}
export enum InterviewType {
@@ -134,4 +136,14 @@ export interface Rating {
user?: User;
createdAt: string;
}
export interface Event {
id: string;
slug?: string;
title: string;
description: string;
date: string;
location: string;
thumbnailUrl: string;
link?: string;
tags?: string[];
}