Initial commit

This commit is contained in:
2023-08-28 13:12:21 +02:00
commit 52134c91ef
78 changed files with 13869 additions and 0 deletions

View File

@@ -0,0 +1,130 @@
import { Section } from "../util/section";
import { Container } from "../util/container";
import { Icon } from "../util/icon";
import { iconSchema } from "../util/icon";
import {
PageBlocksFeatures,
PageBlocksFeaturesItems,
} from "../../tina/__generated__/types";
import { tinaField } from "tinacms/dist/react";
export const Feature = ({
featuresColor,
data,
}: {
featuresColor: string;
data: PageBlocksFeaturesItems;
}) => {
return (
<div
data-tina-field={tinaField(data)}
className="flex-1 flex flex-col gap-6 text-center items-center lg:items-start lg:text-left max-w-xl mx-auto"
style={{ flexBasis: "16rem" }}
>
{data.icon && (
<Icon
tinaField={tinaField(data, "icon")}
parentColor={featuresColor}
data={{ size: "large", ...data.icon }}
/>
)}
{data.title && (
<h3
data-tina-field={tinaField(data, "title")}
className="text-2xl font-semibold title-font"
>
{data.title}
</h3>
)}
{data.text && (
<p
data-tina-field={tinaField(data, "text")}
className="text-base opacity-80 leading-relaxed"
>
{data.text}
</p>
)}
</div>
);
};
export const Features = ({ data }: { data: PageBlocksFeatures }) => {
return (
<Section color={data.color}>
<Container
className={`flex flex-wrap gap-x-10 gap-y-8 text-left`}
size="large"
>
{data.items &&
data.items.map(function (block, i) {
return <Feature featuresColor={data.color} key={i} data={block} />;
})}
</Container>
</Section>
);
};
const defaultFeature = {
title: "Here's Another Feature",
text: "This is where you might talk about the feature, if this wasn't just filler text.",
icon: {
color: "",
style: "float",
name: "",
},
};
export const featureBlockSchema = {
name: "features",
label: "Features",
ui: {
previewSrc: "/blocks/features.png",
defaultItem: {
items: [defaultFeature, defaultFeature, defaultFeature],
},
},
fields: [
{
type: "object",
label: "Feature Items",
name: "items",
list: true,
ui: {
itemProps: (item) => {
return {
label: item?.title,
};
},
defaultItem: {
...defaultFeature,
},
},
fields: [
iconSchema,
{
type: "string",
label: "Title",
name: "title",
},
{
type: "string",
label: "Text",
name: "text",
ui: {
component: "textarea",
},
},
],
},
{
type: "string",
label: "Color",
name: "color",
options: [
{ label: "Default", value: "default" },
{ label: "Tint", value: "tint" },
{ label: "Primary", value: "primary" },
],
},
],
};