This repository has been archived on 2025-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
aidxnCC/app/components/MusicInfo.tsx

34 lines
870 B
TypeScript
Raw Normal View History

2025-01-08 09:14:02 -05:00
import React from 'react';
2025-01-08 09:33:27 -05:00
import MusicInfoButton from './MusicInfoButton';
interface TimePeriod {
title: string;
slug: string;
}
const timePeriods: TimePeriod[] = [
{ title: 'Late Summer 2024', slug: 'late-summer-2024' },
{ title: 'Early Summer 2024', slug: 'early-summer-2024' },
];
2025-01-08 09:14:02 -05:00
const MusicInfo: React.FC = () => {
return (
<div className="max-w-2xl mx-auto text-center text-gray-200">
2025-01-08 09:33:27 -05:00
{timePeriods.map((period) => (
<section key={period.slug} className="mb-12">
<h2 className="text-2xl font-semibold mb-4">{period.title}</h2>
<div className="flex justify-center">
<MusicInfoButton
href={`/time-periods/${period.slug}/what-was-going-on`}
label="WHAT WAS GOING ON"
/>
</div>
</section>
))}
2025-01-08 09:14:02 -05:00
</div>
);
};
2025-01-08 09:33:27 -05:00
export default MusicInfo;