diff --git a/app/dashboard/expenses/page.tsx b/app/dashboard/expenses/page.tsx
index 7d656a0..91f6c0f 100644
--- a/app/dashboard/expenses/page.tsx
+++ b/app/dashboard/expenses/page.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { lusitana } from '@/app/ui/fonts';
export default function Page () {
diff --git a/app/dashboard/guests/page.tsx b/app/dashboard/guests/page.tsx
index 40214be..2b65f56 100644
--- a/app/dashboard/guests/page.tsx
+++ b/app/dashboard/guests/page.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { lusitana } from '@/app/ui/fonts';
import AffinityGroupsTree from '@/app/ui/guests/affinity-groups-tree';
import GuestsTable from '@/app/ui/guests/table';
diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx
index 79bd4c3..d179387 100644
--- a/app/dashboard/layout.tsx
+++ b/app/dashboard/layout.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import SideNav from '@/app/ui/dashboard/sidenav';
export default function Layout({ children }: { children: React.ReactNode }) {
diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx
index c820d9f..643e65f 100644
--- a/app/dashboard/page.tsx
+++ b/app/dashboard/page.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
export default function Page() {
return
Dashboard Page
;
}
\ No newline at end of file
diff --git a/app/dashboard/tables/page.tsx b/app/dashboard/tables/page.tsx
index 81c472e..2aec187 100644
--- a/app/dashboard/tables/page.tsx
+++ b/app/dashboard/tables/page.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { lusitana } from '@/app/ui/fonts';
export default function Page () {
diff --git a/app/layout.tsx b/app/layout.tsx
index 992035a..e2cd6af 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import '@/app/ui/global.css'
import 'primereact/resources/themes/lara-light-cyan/theme.css';
diff --git a/app/page.tsx b/app/page.tsx
index ce4a8cf..95ca011 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import Link from 'next/link';
import styles from '@/app/ui/home.module.css';
diff --git a/app/ui/button.tsx b/app/ui/button.tsx
index af8f627..d30b980 100644
--- a/app/ui/button.tsx
+++ b/app/ui/button.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import clsx from 'clsx';
interface ButtonProps extends React.ButtonHTMLAttributes {
diff --git a/app/ui/customers/table.tsx b/app/ui/customers/table.tsx
index 190a43d..6a41e3f 100644
--- a/app/ui/customers/table.tsx
+++ b/app/ui/customers/table.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import Image from 'next/image';
import { lusitana } from '@/app/ui/fonts';
import Search from '@/app/ui/search';
diff --git a/app/ui/dashboard/cards.tsx b/app/ui/dashboard/cards.tsx
index e66e70b..687043c 100644
--- a/app/ui/dashboard/cards.tsx
+++ b/app/ui/dashboard/cards.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import {
BanknotesIcon,
ClockIcon,
diff --git a/app/ui/dashboard/latest-invoices.tsx b/app/ui/dashboard/latest-invoices.tsx
index d07d450..7c668e9 100644
--- a/app/ui/dashboard/latest-invoices.tsx
+++ b/app/ui/dashboard/latest-invoices.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { ArrowPathIcon } from '@heroicons/react/24/outline';
import clsx from 'clsx';
import Image from 'next/image';
diff --git a/app/ui/dashboard/loading.tsx b/app/ui/dashboard/loading.tsx
index 633fb4c..2614837 100644
--- a/app/ui/dashboard/loading.tsx
+++ b/app/ui/dashboard/loading.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
export default function Loading() {
return Loading...
;
}
\ No newline at end of file
diff --git a/app/ui/dashboard/nav-links.tsx b/app/ui/dashboard/nav-links.tsx
index ceef053..7d88618 100644
--- a/app/ui/dashboard/nav-links.tsx
+++ b/app/ui/dashboard/nav-links.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client'
import {
diff --git a/app/ui/dashboard/revenue-chart.tsx b/app/ui/dashboard/revenue-chart.tsx
index f19e698..023e61d 100644
--- a/app/ui/dashboard/revenue-chart.tsx
+++ b/app/ui/dashboard/revenue-chart.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { generateYAxis } from '@/app/lib/utils';
import { CalendarIcon } from '@heroicons/react/24/outline';
import { lusitana } from '@/app/ui/fonts';
diff --git a/app/ui/dashboard/sidenav.tsx b/app/ui/dashboard/sidenav.tsx
index d116880..a13a2e6 100644
--- a/app/ui/dashboard/sidenav.tsx
+++ b/app/ui/dashboard/sidenav.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import Link from 'next/link';
import NavLinks from '@/app/ui/dashboard/nav-links';
import { PowerIcon } from '@heroicons/react/24/outline';
diff --git a/app/ui/guests/affinity-groups-tree.tsx b/app/ui/guests/affinity-groups-tree.tsx
index 58bb7cf..0082070 100644
--- a/app/ui/guests/affinity-groups-tree.tsx
+++ b/app/ui/guests/affinity-groups-tree.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client'
import React, { useState, useEffect, Suspense } from 'react';
diff --git a/app/ui/guests/breadcrumbs.tsx b/app/ui/guests/breadcrumbs.tsx
index cd9e226..828a614 100644
--- a/app/ui/guests/breadcrumbs.tsx
+++ b/app/ui/guests/breadcrumbs.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { clsx } from 'clsx';
import Link from 'next/link';
import { lusitana } from '@/app/ui/fonts';
diff --git a/app/ui/guests/buttons.tsx b/app/ui/guests/buttons.tsx
index 2f3fbf6..d4e2183 100644
--- a/app/ui/guests/buttons.tsx
+++ b/app/ui/guests/buttons.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { PencilIcon, PlusIcon, TrashIcon } from '@heroicons/react/24/outline';
import Link from 'next/link';
diff --git a/app/ui/guests/create-form.tsx b/app/ui/guests/create-form.tsx
index e44b169..d66a259 100644
--- a/app/ui/guests/create-form.tsx
+++ b/app/ui/guests/create-form.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { CustomerField } from '@/app/lib/definitions';
import Link from 'next/link';
import {
diff --git a/app/ui/guests/edit-form.tsx b/app/ui/guests/edit-form.tsx
index 859396f..d71a275 100644
--- a/app/ui/guests/edit-form.tsx
+++ b/app/ui/guests/edit-form.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client';
import { CustomerField, InvoiceForm } from '@/app/lib/definitions';
diff --git a/app/ui/guests/pagination.tsx b/app/ui/guests/pagination.tsx
index 89998ec..42488ae 100644
--- a/app/ui/guests/pagination.tsx
+++ b/app/ui/guests/pagination.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client';
import { ArrowLeftIcon, ArrowRightIcon } from '@heroicons/react/24/outline';
diff --git a/app/ui/guests/skeleton-row.tsx b/app/ui/guests/skeleton-row.tsx
index 0b989e6..87de2cc 100644
--- a/app/ui/guests/skeleton-row.tsx
+++ b/app/ui/guests/skeleton-row.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import Skeleton from '@/app/ui/skeleton';
export function SkeletonRow() {
diff --git a/app/ui/guests/status.tsx b/app/ui/guests/status.tsx
index 2c78d93..f8a3a78 100644
--- a/app/ui/guests/status.tsx
+++ b/app/ui/guests/status.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { CheckIcon, ClockIcon } from '@heroicons/react/24/outline';
import clsx from 'clsx';
diff --git a/app/ui/guests/table.tsx b/app/ui/guests/table.tsx
index aedd51c..af2752b 100644
--- a/app/ui/guests/table.tsx
+++ b/app/ui/guests/table.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client';
import clsx from 'clsx';
diff --git a/app/ui/login-form.tsx b/app/ui/login-form.tsx
index 2976b67..6e6241e 100644
--- a/app/ui/login-form.tsx
+++ b/app/ui/login-form.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
import { lusitana } from '@/app/ui/fonts';
import {
AtSymbolIcon,
diff --git a/app/ui/search.tsx b/app/ui/search.tsx
index f02de58..b50d837 100644
--- a/app/ui/search.tsx
+++ b/app/ui/search.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
'use client';
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
diff --git a/app/ui/skeleton.tsx b/app/ui/skeleton.tsx
index 590c507..1a2bdc8 100644
--- a/app/ui/skeleton.tsx
+++ b/app/ui/skeleton.tsx
@@ -1,3 +1,5 @@
+/* Copyright (C) 2024 Manuel Bustillo*/
+
export default function Skeleton({ className }: { className: string }) {
return ;
}
\ No newline at end of file