"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import FooterMedia from "@/components/sections/footer/FooterMedia"; import { Satellite } from "lucide-react"; export default function DataPage() { const navItems = [ { name: "COSMOS", id: "home" }, { name: "SINGULARITY", id: "about" }, { name: "CLASSIFICATION", id: "types" }, { name: "OBSERVATORY", id: "gallery" }, { name: "DATA", id: "data" }, ]; const footerColumns = [ { title: "EXPLORE", items: [ { label: "Home", href: "/" }, { label: "About Black Holes", href: "/about" }, { label: "Classifications", href: "/types" }, { label: "Gallery", href: "/gallery" }, ], }, { title: "SCIENCE", items: [ { label: "Cosmic Data", href: "/data" }, { label: "Event Horizon Telescope", href: "https://eventhorizontelescope.org" }, { label: "NASA Astrophysics", href: "https://science.nasa.gov/astrophysics/" }, { label: "LIGO Detections", href: "https://ligo.caltech.edu" }, ], }, { title: "CONNECT", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "Research Papers", href: "https://arxiv.org" }, { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }, ], }, ]; return (
); }