2025-12-11 10:40:55 +01:00
|
|
|
/*
|
2026-01-12 15:00:36 +01:00
|
|
|
* Copyright (c) 2026 by Christian Kellner.
|
2025-12-11 10:40:55 +01:00
|
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2026-05-07 12:12:49 +02:00
|
|
|
import ListingsOverview from '../../components/listings/ListingsOverview.jsx';
|
2026-04-22 21:11:18 +02:00
|
|
|
import Headline from '../../components/headline/Headline.jsx';
|
2025-09-25 15:03:47 +02:00
|
|
|
|
|
|
|
|
export default function Listings() {
|
2026-04-22 21:11:18 +02:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Headline text="Listings" />
|
2026-05-07 12:12:49 +02:00
|
|
|
<ListingsOverview />
|
2026-04-22 21:11:18 +02:00
|
|
|
</>
|
|
|
|
|
);
|
2025-09-25 15:03:47 +02:00
|
|
|
}
|