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
All checks were successful
Build and Push App / build (push) Successful in 11m4s
This commit is contained in:
14
types.ts
14
types.ts
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user