From cbdb2ee1547fcfbef8c874da60b17eee80b5fa18 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Sun, 12 Oct 2025 22:49:13 +0200 Subject: Get rid of trajectory and portfolio --- src/layouts/PortfolioSingleLayout.astro | 370 -------------------------------- 1 file changed, 370 deletions(-) delete mode 100644 src/layouts/PortfolioSingleLayout.astro (limited to 'src/layouts/PortfolioSingleLayout.astro') diff --git a/src/layouts/PortfolioSingleLayout.astro b/src/layouts/PortfolioSingleLayout.astro deleted file mode 100644 index 1922e16..0000000 --- a/src/layouts/PortfolioSingleLayout.astro +++ /dev/null @@ -1,370 +0,0 @@ ---- -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) => ( - - - - {image.alt} - - - ))} -
- )} - - -
- -
- Some alt -
-
Some caption
- - -
-
- -
- - - - -- cgit v1.3