debug for build
This commit is contained in:
@@ -3,7 +3,11 @@ import Link from 'next/link';
|
||||
import { IProjectCardProps } from './project';
|
||||
import { getProjects } from '@/services/projects';
|
||||
|
||||
export default async function ProjectsGrid({ projects }) {
|
||||
export default async function ProjectsGrid({
|
||||
projects,
|
||||
}: {
|
||||
projects: IProjectCardProps[];
|
||||
}) {
|
||||
return (
|
||||
<div className="container mx-auto grid grid-cols-1 gap-6 px-4 pt-12 pb-0 md:grid-cols-2 md:py-28">
|
||||
{projects.map((project, index) => (
|
||||
|
||||
Reference in New Issue
Block a user