import Link from 'next/link'
import { Container } from '@/components/Container'
import Episodes from '@/components/Episodes'
function Skeleton({ width, height, className, color }) {
const w = width ? '' : 'w-full';
const c = color ? color : 'bg-slate-200';
return (
);
};
function EpisodeEntryLoading() {
return (
/
)
}
function Loading() {
// You can add any UI inside Loading, including a Skeleton.
return (
{[0, 1, 2, 3, 4, 5, 6, 7].map((i) => (
))}
);
}
export const metadata = {
description: "Weekly podcast focused on React, programming, and software engineering."
};
export default async function Home() {
return (
<>
View All Episodes
>
);
}