import { Navbar } from "@/components/sections/Navbar"; import { PageTitleBanner } from "@/components/shared/PageTitleBanner"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { PageContainer } from "@/components/shared/PageContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { RevealOnView } from "@/components/shared/RevealOnView"; import { PreFooterCTA } from "@/components/shared/PreFooterCTA"; import { resources } from "@/data/site-pages"; export const metadata = { title: "Resources", description: "Ideas for the digital enterprise — perspectives on cloud, data, AI, and modern engineering.", }; export default function ResourcesPage() { return ( <>
{resources.map((item, index) => (
{item.category}

{item.title}

{item.description}

))}
); }