import React, { useState } from 'react';
import { Card, CardContent } from "@/components/ui/card";
import { ScrollArea } from "@/components/ui/scroll-area";
const PressPage = () => {
// Categories for table of contents
const categories = {
'Television Appearances': ['ABC', 'CBS', 'Fox', 'NBC', 'PBS'],
'Print Media': ['New York Post', 'Good Housekeeping', "Woman's Day"],
'Digital Media': ['CNBC', 'Yahoo', 'The Mighty'],
'Awards & Recognition': ['EY Entrepreneur Award']
};
const pressItems = [
{
category: "Television Appearances",
title: "ABC News 7 Washington DC - Businesses Urged To Hire More People With Disabilities",
outlet: "ABC",
date: "October 2021",
link: "https://cdn.shopify.com/s/files/1/1631/8771/files/WJLA_10-26-2021_wash_DC_channel_7.mp4?v=1635512459",
image: "/api/placeholder/120/120"
},
// Add all other press items here following the same structure
];
const [selectedCategory, setSelectedCategory] = useState('All');
const filteredItems = selectedCategory === 'All'
? pressItems
: pressItems.filter(item => item.category === selectedCategory);
return (
{/* Hero Section */}
{/* Contact Information */}
{/* Table of Contents */}
{/* Press Items Grid */}
);
};
export default PressPage;John's Crazy Socks in the Press
John & Mark Cronin have made television and podcast appearances on notable outlets such as Fox and Friends, CBS News, and ABC News.
Press Inquiries
If you're interested in finding out more about John's Crazy Socks, please contact:
Email: contact@johnscrazysocks.com
Phone: 631-760-5625 (Ask for Carol)
Categories
{Object.keys(categories).map(category => (
))}
{filteredItems.map((item, index) => (
))}