Manuel Bustillo 51d9a3d6e2
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m40s
Add copyright notice / copyright_notice (pull_request) Successful in 2m1s
Playwright Tests / test (pull_request) Successful in 4m56s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 7m55s
Render list of tables in an arrangement
2024-11-02 11:24:48 +01:00

59 lines
2.0 KiB
TypeScript

/* Copyright (C) 2024 Manuel Bustillo*/
import { Table } from '@/app/ui/components/table';
import Arrangement from '@/app/ui/arrangements/arrangement';
import Summary from '@/app/ui/expenses/summary';
import { lusitana } from '@/app/ui/fonts';
export default function Page() {
return(
<Arrangement id="4a54516b-1c6e-49eb-9781-c20b93f89c85"/>
)
return (
<div className="w-full">
<div className="w-full items-center justify-between">
<h1 className={`${lusitana.className} text-2xl`}>Table distributions</h1>
<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>
</div>
</div>
);
}