import React from 'react'; import { motion } from 'framer-motion'; import { JOURNAL_ENTRIES } from '../constants'; const Editorial: React.FC = () => { return (
The Journal Editorial
{/* Featured Article */}
Featured Story

{JOURNAL_ENTRIES[0].title}

{JOURNAL_ENTRIES[0].description}

Read Article arrow_forward
{/* Article Grid */}
{JOURNAL_ENTRIES.slice(1).map((entry, idx) => (
{entry.title}
{entry.category} {entry.date}

{entry.title}

{entry.description}

))} {/* Dummy extra entry to fill grid */}
Archive
Archive 2023

Explore Past Issues

Dive into our archive of stories, guides, and studio updates.

); }; export default Editorial;