2024-10-27 21:11:45 +00:00
|
|
|
/* Copyright (C) 2024 Manuel Bustillo*/
|
|
|
|
|
2024-08-11 12:03:11 +02:00
|
|
|
import Link from 'next/link';
|
2024-08-11 12:34:16 +02:00
|
|
|
import styles from '@/app/ui/home.module.css';
|
2024-08-11 12:03:11 +02:00
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
return (
|
|
|
|
<main className="flex min-h-screen flex-col p-6">
|
2024-08-11 12:34:16 +02:00
|
|
|
|
2024-08-11 12:03:11 +02:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|