diff --git a/app/dashboard/expenses/page.tsx b/app/dashboard/expenses/page.tsx
index 7d656a0..66ab8fb 100644
--- a/app/dashboard/expenses/page.tsx
+++ b/app/dashboard/expenses/page.tsx
@@ -1,3 +1,4 @@
+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..2a97f99 100644
--- a/app/dashboard/guests/page.tsx
+++ b/app/dashboard/guests/page.tsx
@@ -1,3 +1,4 @@
+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..5a69e1b 100644
--- a/app/dashboard/layout.tsx
+++ b/app/dashboard/layout.tsx
@@ -1,3 +1,4 @@
+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..23d9f4b 100644
--- a/app/dashboard/page.tsx
+++ b/app/dashboard/page.tsx
@@ -1,3 +1,4 @@
+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..ac518c1 100644
--- a/app/dashboard/tables/page.tsx
+++ b/app/dashboard/tables/page.tsx
@@ -1,3 +1,4 @@
+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..dc88129 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,3 +1,4 @@
+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..407ee8c 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,3 +1,4 @@
+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..63f13d4 100644
--- a/app/ui/button.tsx
+++ b/app/ui/button.tsx
@@ -1,3 +1,4 @@
+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..318d6f0 100644
--- a/app/ui/customers/table.tsx
+++ b/app/ui/customers/table.tsx
@@ -1,3 +1,4 @@
+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..b373334 100644
--- a/app/ui/dashboard/cards.tsx
+++ b/app/ui/dashboard/cards.tsx
@@ -1,3 +1,4 @@
+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..1fd72bd 100644
--- a/app/ui/dashboard/latest-invoices.tsx
+++ b/app/ui/dashboard/latest-invoices.tsx
@@ -1,3 +1,4 @@
+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..7af4b1d 100644
--- a/app/ui/dashboard/loading.tsx
+++ b/app/ui/dashboard/loading.tsx
@@ -1,3 +1,4 @@
+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..9355227 100644
--- a/app/ui/dashboard/nav-links.tsx
+++ b/app/ui/dashboard/nav-links.tsx
@@ -1,3 +1,4 @@
+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..64a0566 100644
--- a/app/ui/dashboard/revenue-chart.tsx
+++ b/app/ui/dashboard/revenue-chart.tsx
@@ -1,3 +1,4 @@
+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..090e208 100644
--- a/app/ui/dashboard/sidenav.tsx
+++ b/app/ui/dashboard/sidenav.tsx
@@ -1,3 +1,4 @@
+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..5c7aa62 100644
--- a/app/ui/guests/affinity-groups-tree.tsx
+++ b/app/ui/guests/affinity-groups-tree.tsx
@@ -1,3 +1,4 @@
+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..f8e989a 100644
--- a/app/ui/guests/breadcrumbs.tsx
+++ b/app/ui/guests/breadcrumbs.tsx
@@ -1,3 +1,4 @@
+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..f9810be 100644
--- a/app/ui/guests/buttons.tsx
+++ b/app/ui/guests/buttons.tsx
@@ -1,3 +1,4 @@
+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..db754ee 100644
--- a/app/ui/guests/create-form.tsx
+++ b/app/ui/guests/create-form.tsx
@@ -1,3 +1,4 @@
+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..dce8b4f 100644
--- a/app/ui/guests/edit-form.tsx
+++ b/app/ui/guests/edit-form.tsx
@@ -1,3 +1,4 @@
+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..44cef6e 100644
--- a/app/ui/guests/pagination.tsx
+++ b/app/ui/guests/pagination.tsx
@@ -1,3 +1,4 @@
+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..23fbac1 100644
--- a/app/ui/guests/skeleton-row.tsx
+++ b/app/ui/guests/skeleton-row.tsx
@@ -1,3 +1,4 @@
+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..74d46fd 100644
--- a/app/ui/guests/status.tsx
+++ b/app/ui/guests/status.tsx
@@ -1,3 +1,4 @@
+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..c621a70 100644
--- a/app/ui/guests/table.tsx
+++ b/app/ui/guests/table.tsx
@@ -1,3 +1,4 @@
+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..ad73795 100644
--- a/app/ui/login-form.tsx
+++ b/app/ui/login-form.tsx
@@ -1,3 +1,4 @@
+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..a083f3d 100644
--- a/app/ui/search.tsx
+++ b/app/ui/search.tsx
@@ -1,3 +1,4 @@
+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..3f709ad 100644
--- a/app/ui/skeleton.tsx
+++ b/app/ui/skeleton.tsx
@@ -1,3 +1,4 @@
+Copyright (C) 2024 Manuel Bustillo
export default function Skeleton({ className }: { className: string }) {
return ;
}
\ No newline at end of file