sanity-plugin-seo-tools
Version:
> Upgrading from V2 to V3 is a breaking change. The `seo-tools` input has been replaced by a SEO pane which needs to be set-up using a custom desk structure as per the installation guide. Secondly, the previously automatically provided fields (focus keywo
16 lines (15 loc) • 896 B
JavaScript
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
import React from 'react';
import styled from 'styled-components';
import { Card, Grid, Spinner, Text } from '@sanity/ui';
var StyledGrid = styled(Grid)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n gap: 1rem;\n grid-template-columns: auto 1fr;\n"], ["\n gap: 1rem;\n grid-template-columns: auto 1fr;\n"])));
export var SeoToolsAnalyzingCard = function () {
return (React.createElement(Card, { padding: [3, 3, 4], shadow: 1, tone: "caution" },
React.createElement(StyledGrid, null,
React.createElement(Spinner, null),
React.createElement(Text, null, "Updating SEO analysis..."))));
};
var templateObject_1;