mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-07 21:07:47 +00:00
24 lines
848 B
TypeScript
24 lines
848 B
TypeScript
import { RawCollectionInfo } from "types/CollectionInfo";
|
|
|
|
const collectionMapping: Array<RawCollectionInfo & { slug: string }> = [
|
|
{
|
|
slug: "framework-field-guide",
|
|
title: "The Framework Field Guide",
|
|
description:
|
|
"A practical and free way to teach Angular, React, and Vue all at once, so you can choose the right tool for the job and learn the underlying concepts in depth.",
|
|
authors: ["crutchcorn"],
|
|
coverImg: "/custom-content/collections/framework-field-guide/cover.png",
|
|
socialImg:
|
|
"/custom-content/collections/framework-field-guide/framework_field_guide_social.png",
|
|
type: "book",
|
|
tags: ["react", "angular", "vue"],
|
|
published: "2024-01-01T13:45:00.284Z",
|
|
buttons: [
|
|
{ text: "Learn more", url: "/collections/framework-field-guide" },
|
|
],
|
|
customChaptersText: "3 books",
|
|
},
|
|
];
|
|
|
|
export default collectionMapping;
|