59 lines
2.0 KiB
TypeScript
Raw Normal View History

2024-10-27 21:11:45 +00:00
/* Copyright (C) 2024 Manuel Bustillo*/
2024-11-01 18:25:00 +01:00
import { Table } from '@/app/ui/components/table';
import Arrangement from '@/app/ui/arrangements/arrangement';
2024-11-01 18:25:00 +01:00
import Summary from '@/app/ui/expenses/summary';
2024-08-11 12:34:16 +02:00
import { lusitana } from '@/app/ui/fonts';
2024-11-01 18:25:00 +01:00
export default function Page() {
return(
<Arrangement id="4a54516b-1c6e-49eb-9781-c20b93f89c85"/>
)
2024-08-11 12:34:16 +02:00
return (
<div className="w-full">
2024-11-01 18:25:00 +01:00
<div className="w-full items-center justify-between">
2024-08-11 12:34:16 +02:00
<h1 className={`${lusitana.className} text-2xl`}>Table distributions</h1>
2024-11-01 18:25:00 +01:00
<div className="flex flex-row flex-wrap justify-around">
<Table guests={
[
{ name: "George Orwell", id: "1" },
{ name: "Aldous Huxley", id: "2" },
{ name: "Isaac Asimov", id: "3" },
{ name: "Arthur C. Clarke", id: "4" },
{ name: "Philip Roth", id: "5" },
{ name: "Kurt Vonnegut", id: "6" },
{ name: "Ray Bradbury", id: "7" },
{ name: "Jorge Luis Borges", id: "8" },
{ name: "Gabriel García Márquez", id: "9" },
{ name: "Julio Cortázar", id: "10" },
]
} />
<Table guests={
[
{ name: "George Orwell", id: "1" },
{ name: "Aldous Huxley", id: "2" },
{ name: "Isaac Asimov", id: "3" },
{ name: "Arthur C. Clarke", id: "4" },
{ name: "Philip Roth", id: "5" },
{ name: "Kurt Vonnegut", id: "6" },
]
} />
<Table guests={
[
{ name: "George Orwell", id: "1" },
{ name: "Aldous Huxley", id: "2" },
{ name: "Isaac Asimov", id: "3" },
{ name: "Arthur C. Clarke", id: "4" },
{ name: "Philip Roth", id: "5" },
{ name: "Jorge Luis Borges", id: "8" },
{ name: "Gabriel García Márquez", id: "9" },
{ name: "Julio Cortázar", id: "10" },
]
} />
</div>
2024-08-11 12:34:16 +02:00
</div>
</div>
);
}