import ArticleCard from '@/components/ArticleCard'; import { Article } from '@/types'; import styles from '@/styles/ArticlesPage.module.css'; interface ArticlesPageProps { articles: Article[]; } const ArticlesPage = ({ articles }: ArticlesPageProps) => { return (
Recent posts from{' '} dev.to {' '} where I share insights and tutorials about web development.
No articles available at the moment.
)}