mirror of
https://github.com/Motion-Games/MotionWebStudio.git
synced 2026-04-21 09:00:53 +02:00
init
This commit is contained in:
44
types.ts
Normal file
44
types.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
export interface Service {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export interface ProductPackage {
|
||||
id: string;
|
||||
name: string;
|
||||
price: string;
|
||||
desc: string; // Description
|
||||
features: string[];
|
||||
isPopular?: boolean;
|
||||
cta: string; // Call to Action button text
|
||||
}
|
||||
|
||||
export interface Reference {
|
||||
id: string;
|
||||
title: string;
|
||||
category: string;
|
||||
imageUrl: string;
|
||||
}
|
||||
|
||||
export interface BlogPost {
|
||||
id: string;
|
||||
title: string;
|
||||
excerpt: string;
|
||||
date: string;
|
||||
imageUrl: string;
|
||||
}
|
||||
|
||||
export interface Invoice {
|
||||
id: string;
|
||||
user_id: string;
|
||||
order_id?: string;
|
||||
invoice_type?: 'advance' | 'final' | null;
|
||||
invoice_number: string;
|
||||
amount: string;
|
||||
created_at: string;
|
||||
status: 'paid' | 'pending' | 'overdue';
|
||||
pdf_url?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user