2025-03-17 13:21:02 +00:00
|
|
|
import Navbar from "@/components/navbar";
|
2025-03-19 15:59:18 +00:00
|
|
|
import Sidebar from "@/components/sidebar_e";
|
2025-03-17 13:21:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function Earthquakes() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="w-full h-full">
|
|
|
|
|
<Navbar></Navbar>
|
2025-03-18 22:49:23 +00:00
|
|
|
<Sidebar></Sidebar>
|
2025-03-17 13:21:02 +00:00
|
|
|
<p>Earthquakes</p>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|