2025-03-19 19:43:34 +00:00
|
|
|
import Sidebar from "@/components/sidebar_o";
|
|
|
|
|
|
2025-03-17 13:21:02 +00:00
|
|
|
export default function Observatories() {
|
2025-03-19 19:20:18 +00:00
|
|
|
return (
|
|
|
|
|
<div className="w-full h-full">
|
|
|
|
|
<p>Observatories</p>
|
2025-03-19 19:43:34 +00:00
|
|
|
<Sidebar></Sidebar>
|
2025-03-19 19:20:18 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|