---
import Layout from "@/layouts/Layout.astro";
import { render } from "astro:content";
import TechnologyBadge from "@/components/TechnologyBadge.astro";
import type { InferEntrySchema } from "astro:content";
import { Icon } from "astro-icon/components";
interface Props {
entry: any;
}
const { entry } = Astro.props;
const data = entry.data as InferEntrySchema<"portfolio">;
const { Content } = await render(entry);
---
Volver al portfolio
{data.title}
Hecho con {data.technologies.map((technology: string) => (
))}
{data.images.length > 0 && (
Galería
{data.images.map((image) => (
))}
)}