Manuel Bustillo
d45ba871d8
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 55s
Add copyright notice / copyright_notice (pull_request) Successful in 1m8s
Playwright Tests / test (pull_request) Successful in 3m41s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 6m43s
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
/* Copyright (C) 2024 Manuel Bustillo*/
|
|
|
|
import { lusitana } from '@/app/ui/fonts';
|
|
import ExpenseSummary from '@/app/ui/expenses/summary';
|
|
|
|
export default function Page () {
|
|
return (
|
|
<div className="w-full">
|
|
<div className="w-full items-center justify-between">
|
|
<h1 className={`${lusitana.className} text-2xl`}>Expenses</h1>
|
|
<h2 className={`${lusitana.className} text-xl`}>Summary</h2>
|
|
<ExpenseSummary />
|
|
</div>
|
|
</div>
|
|
);
|
|
} |