node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
'use strict';
var jsxRuntime = require('react/jsx-runtime');
var admin = require('@strapi/strapi/admin');
var reactRouterDom = require('react-router-dom');
var HomePage = require('./HomePage.js');
const App = ()=>{
return /*#__PURE__*/ jsxRuntime.jsx("div", {
children: /*#__PURE__*/ jsxRuntime.jsxs(reactRouterDom.Routes, {
children: [
/*#__PURE__*/ jsxRuntime.jsx(reactRouterDom.Route, {
index: true,
element: /*#__PURE__*/ jsxRuntime.jsx(HomePage.HomePage, {})
}),
/*#__PURE__*/ jsxRuntime.jsx(reactRouterDom.Route, {
path: "*",
element: /*#__PURE__*/ jsxRuntime.jsx(admin.Page.Error, {})
})
]
})
});
};
exports.App = App;
//# sourceMappingURL=App.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"App.js","sources":["../../../admin/src/pages/App.tsx"],"sourcesContent":["/**\n *\n * This component is the skeleton around the actual pages, and should only\n * contain code that should be seen on all pages. (e.g. navigation bar)\n *\n */\n\nimport { Page } from '@strapi/strapi/admin';\nimport { Routes, Route } from 'react-router-dom';\n\nimport { HomePage } from './HomePage';\n\nconst App = () => {\n return (\n <div>\n <Routes>\n <Route index element={<HomePage />} />\n <Route path=\"*\" element={<Page.Error />} />\n </Routes>\n </div>\n );\n};\n\nexport { App };\n"],"names":["App","_jsx","div","_jsxs","Routes","Route","index","element","HomePage","path","Page","Error"],"mappings":";;;;;;;AAYA,MAAMA,GAAM,GAAA,IAAA;AACV,IAAA,qBACEC,cAACC,CAAAA,KAAAA,EAAAA;AACC,QAAA,QAAA,gBAAAC,eAACC,CAAAA,qBAAAA,EAAAA;;8BACCH,cAACI,CAAAA,oBAAAA,EAAAA;oBAAMC,KAAK,EAAA,IAAA;AAACC,oBAAAA,OAAAA,gBAASN,cAACO,CAAAA,iBAAAA,EAAAA,EAAAA;;8BACvBP,cAACI,CAAAA,oBAAAA,EAAAA;oBAAMI,IAAK,EAAA,GAAA;oBAAIF,OAAS,gBAAAN,cAAA,CAACS,WAAKC,KAAK,EAAA,EAAA;;;;;AAI5C;;;;"}

View File

@@ -0,0 +1,24 @@
import { jsx, jsxs } from 'react/jsx-runtime';
import { Page } from '@strapi/strapi/admin';
import { Routes, Route } from 'react-router-dom';
import { HomePage } from './HomePage.mjs';
const App = ()=>{
return /*#__PURE__*/ jsx("div", {
children: /*#__PURE__*/ jsxs(Routes, {
children: [
/*#__PURE__*/ jsx(Route, {
index: true,
element: /*#__PURE__*/ jsx(HomePage, {})
}),
/*#__PURE__*/ jsx(Route, {
path: "*",
element: /*#__PURE__*/ jsx(Page.Error, {})
})
]
})
});
};
export { App };
//# sourceMappingURL=App.mjs.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"App.mjs","sources":["../../../admin/src/pages/App.tsx"],"sourcesContent":["/**\n *\n * This component is the skeleton around the actual pages, and should only\n * contain code that should be seen on all pages. (e.g. navigation bar)\n *\n */\n\nimport { Page } from '@strapi/strapi/admin';\nimport { Routes, Route } from 'react-router-dom';\n\nimport { HomePage } from './HomePage';\n\nconst App = () => {\n return (\n <div>\n <Routes>\n <Route index element={<HomePage />} />\n <Route path=\"*\" element={<Page.Error />} />\n </Routes>\n </div>\n );\n};\n\nexport { App };\n"],"names":["App","_jsx","div","_jsxs","Routes","Route","index","element","HomePage","path","Page","Error"],"mappings":";;;;;AAYA,MAAMA,GAAM,GAAA,IAAA;AACV,IAAA,qBACEC,GAACC,CAAAA,KAAAA,EAAAA;AACC,QAAA,QAAA,gBAAAC,IAACC,CAAAA,MAAAA,EAAAA;;8BACCH,GAACI,CAAAA,KAAAA,EAAAA;oBAAMC,KAAK,EAAA,IAAA;AAACC,oBAAAA,OAAAA,gBAASN,GAACO,CAAAA,QAAAA,EAAAA,EAAAA;;8BACvBP,GAACI,CAAAA,KAAAA,EAAAA;oBAAMI,IAAK,EAAA,GAAA;oBAAIF,OAAS,gBAAAN,GAAA,CAACS,KAAKC,KAAK,EAAA,EAAA;;;;;AAI5C;;;;"}

View File

@@ -0,0 +1,161 @@
'use strict';
var jsxRuntime = require('react/jsx-runtime');
var designSystem = require('@strapi/design-system');
var admin = require('@strapi/strapi/admin');
var reactIntl = require('react-intl');
var styledComponents = require('styled-components');
var Cloud = require('../components/Cloud.js');
var Github = require('../components/Github.js');
var getTrad = require('../utils/getTrad.js');
var cornerOrnament = require('./assets/corner-ornament.svg.js');
var leftSideCloud = require('./assets/left-side-cloud.png.js');
var rightSideCloud = require('./assets/right-side-cloud.png.js');
const LogoContainer = styledComponents.styled(designSystem.Box)`
position: absolute;
top: 0;
right: 0;
img {
width: 15rem;
}
`;
const RightSideCloudContainer = styledComponents.styled(designSystem.Box)`
position: absolute;
top: 400px;
right: 0;
img {
width: 15rem;
}
`;
const LeftSideCloudContainer = styledComponents.styled(designSystem.Box)`
position: absolute;
top: 150px;
left: 56px;
img {
width: 15rem;
}
`;
const HomePage = ()=>{
const { formatMessage } = reactIntl.useIntl();
return /*#__PURE__*/ jsxRuntime.jsxs(designSystem.Box, {
paddingLeft: 10,
paddingRight: 10,
children: [
/*#__PURE__*/ jsxRuntime.jsx(RightSideCloudContainer, {
children: /*#__PURE__*/ jsxRuntime.jsx("img", {
alt: "right-side-cloud",
"aria-hidden": true,
src: rightSideCloud
})
}),
/*#__PURE__*/ jsxRuntime.jsx(LeftSideCloudContainer, {
children: /*#__PURE__*/ jsxRuntime.jsx("img", {
alt: "left-side-cloud",
"aria-hidden": true,
src: leftSideCloud
})
}),
/*#__PURE__*/ jsxRuntime.jsx(LogoContainer, {
children: /*#__PURE__*/ jsxRuntime.jsx("img", {
alt: "strapi-corner-ornament",
"aria-hidden": true,
src: cornerOrnament
})
}),
/*#__PURE__*/ jsxRuntime.jsxs(designSystem.Box, {
paddingLeft: 10,
paddingRight: 10,
paddingBottom: 8,
paddingTop: 10,
children: [
/*#__PURE__*/ jsxRuntime.jsx(designSystem.Flex, {
justifyContent: "space-between",
alignItems: "center",
direction: "column",
children: /*#__PURE__*/ jsxRuntime.jsx(designSystem.Flex, {
minWidth: 0,
children: /*#__PURE__*/ jsxRuntime.jsx(designSystem.Typography, {
tag: "h1",
variant: "alpha",
children: formatMessage({
id: getTrad.getTrad('Homepage.title'),
defaultMessage: 'Fully-managed Cloud Hosting for your Strapi Project'
})
})
})
}),
/*#__PURE__*/ jsxRuntime.jsx(designSystem.Flex, {
alignItems: "center",
direction: "column",
children: /*#__PURE__*/ jsxRuntime.jsx(designSystem.Typography, {
variant: "epsilon",
textColor: "neutral600",
tag: "p",
children: formatMessage({
id: getTrad.getTrad('Homepage.subTitle'),
defaultMessage: 'Follow this 2 steps process to get Everything You Need to Run Strapi in Production.'
})
})
})
]
}),
/*#__PURE__*/ jsxRuntime.jsxs(designSystem.Box, {
padding: 10,
children: [
/*#__PURE__*/ jsxRuntime.jsxs(admin.Layouts.Grid, {
size: "M",
children: [
/*#__PURE__*/ jsxRuntime.jsx(Github.GithubBox, {}),
/*#__PURE__*/ jsxRuntime.jsx(Cloud.CloudBox, {})
]
}),
/*#__PURE__*/ jsxRuntime.jsxs(designSystem.Box, {
padding: 6,
borderRadius: 8,
hasRadius: true,
background: "neutral0",
borderColor: "neutral200",
children: [
/*#__PURE__*/ jsxRuntime.jsx(designSystem.Box, {
paddingBottom: 2,
children: /*#__PURE__*/ jsxRuntime.jsx(designSystem.Typography, {
variant: "delta",
fontWeight: "bold",
textColor: "neutral1000",
tag: "p",
children: formatMessage({
id: getTrad.getTrad('Homepage.textBox.label.versioned'),
defaultMessage: 'Try Strapi Cloud for Free!'
})
})
}),
/*#__PURE__*/ jsxRuntime.jsxs(designSystem.Typography, {
variant: "epsilon",
textColor: "neutral1000",
tag: "p",
children: [
formatMessage({
id: getTrad.getTrad('Homepage.textBox.text.versioned'),
defaultMessage: 'Strapi Cloud offers a 14 days free trial for you to experiment with your project on the cloud including all features.'
}),
' ',
/*#__PURE__*/ jsxRuntime.jsx(designSystem.Link, {
href: "https://strapi.io/cloud?utm_campaign=Strapi%20Cloud%20Plugin&utm_source=In-Product&utm_medium=CTA",
children: "Learn more"
})
]
})
]
})
]
})
]
});
};
exports.HomePage = HomePage;
//# sourceMappingURL=HomePage.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,159 @@
import { jsxs, jsx } from 'react/jsx-runtime';
import { Box, Flex, Typography, Link } from '@strapi/design-system';
import { Layouts } from '@strapi/strapi/admin';
import { useIntl } from 'react-intl';
import { styled } from 'styled-components';
import { CloudBox } from '../components/Cloud.mjs';
import { GithubBox } from '../components/Github.mjs';
import { getTrad } from '../utils/getTrad.mjs';
import img$2 from './assets/corner-ornament.svg.mjs';
import img$1 from './assets/left-side-cloud.png.mjs';
import img from './assets/right-side-cloud.png.mjs';
const LogoContainer = styled(Box)`
position: absolute;
top: 0;
right: 0;
img {
width: 15rem;
}
`;
const RightSideCloudContainer = styled(Box)`
position: absolute;
top: 400px;
right: 0;
img {
width: 15rem;
}
`;
const LeftSideCloudContainer = styled(Box)`
position: absolute;
top: 150px;
left: 56px;
img {
width: 15rem;
}
`;
const HomePage = ()=>{
const { formatMessage } = useIntl();
return /*#__PURE__*/ jsxs(Box, {
paddingLeft: 10,
paddingRight: 10,
children: [
/*#__PURE__*/ jsx(RightSideCloudContainer, {
children: /*#__PURE__*/ jsx("img", {
alt: "right-side-cloud",
"aria-hidden": true,
src: img
})
}),
/*#__PURE__*/ jsx(LeftSideCloudContainer, {
children: /*#__PURE__*/ jsx("img", {
alt: "left-side-cloud",
"aria-hidden": true,
src: img$1
})
}),
/*#__PURE__*/ jsx(LogoContainer, {
children: /*#__PURE__*/ jsx("img", {
alt: "strapi-corner-ornament",
"aria-hidden": true,
src: img$2
})
}),
/*#__PURE__*/ jsxs(Box, {
paddingLeft: 10,
paddingRight: 10,
paddingBottom: 8,
paddingTop: 10,
children: [
/*#__PURE__*/ jsx(Flex, {
justifyContent: "space-between",
alignItems: "center",
direction: "column",
children: /*#__PURE__*/ jsx(Flex, {
minWidth: 0,
children: /*#__PURE__*/ jsx(Typography, {
tag: "h1",
variant: "alpha",
children: formatMessage({
id: getTrad('Homepage.title'),
defaultMessage: 'Fully-managed Cloud Hosting for your Strapi Project'
})
})
})
}),
/*#__PURE__*/ jsx(Flex, {
alignItems: "center",
direction: "column",
children: /*#__PURE__*/ jsx(Typography, {
variant: "epsilon",
textColor: "neutral600",
tag: "p",
children: formatMessage({
id: getTrad('Homepage.subTitle'),
defaultMessage: 'Follow this 2 steps process to get Everything You Need to Run Strapi in Production.'
})
})
})
]
}),
/*#__PURE__*/ jsxs(Box, {
padding: 10,
children: [
/*#__PURE__*/ jsxs(Layouts.Grid, {
size: "M",
children: [
/*#__PURE__*/ jsx(GithubBox, {}),
/*#__PURE__*/ jsx(CloudBox, {})
]
}),
/*#__PURE__*/ jsxs(Box, {
padding: 6,
borderRadius: 8,
hasRadius: true,
background: "neutral0",
borderColor: "neutral200",
children: [
/*#__PURE__*/ jsx(Box, {
paddingBottom: 2,
children: /*#__PURE__*/ jsx(Typography, {
variant: "delta",
fontWeight: "bold",
textColor: "neutral1000",
tag: "p",
children: formatMessage({
id: getTrad('Homepage.textBox.label.versioned'),
defaultMessage: 'Try Strapi Cloud for Free!'
})
})
}),
/*#__PURE__*/ jsxs(Typography, {
variant: "epsilon",
textColor: "neutral1000",
tag: "p",
children: [
formatMessage({
id: getTrad('Homepage.textBox.text.versioned'),
defaultMessage: 'Strapi Cloud offers a 14 days free trial for you to experiment with your project on the cloud including all features.'
}),
' ',
/*#__PURE__*/ jsx(Link, {
href: "https://strapi.io/cloud?utm_campaign=Strapi%20Cloud%20Plugin&utm_source=In-Product&utm_medium=CTA",
children: "Learn more"
})
]
})
]
})
]
})
]
});
};
export { HomePage };
//# sourceMappingURL=HomePage.mjs.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,6 @@
'use strict';
var img = "data:image/svg+xml,%3csvg width='148' height='148' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg opacity='.8' fill-rule='evenodd' clip-rule='evenodd'%3e %3cpath opacity='.15' d='M110.81 37H73.97V74.1h36.84V37Z' fill='url(%23a)'/%3e %3cpath opacity='.07' d='M36.84 0H0v37.08h36.84V0Z' fill='url(%23b)'/%3e %3cpath opacity='.07' d='M73.92 73.95H37.08v37.08h36.84V73.95Z' fill='url(%23c)'/%3e %3cpath opacity='.07' d='M147.99 110.92h-37.3V148H148v-37.08Z' fill='url(%23d)'/%3e %3cpath opacity='.15' d='M73.83 37H36.84L73.83 0v37Z' fill='url(%23e)'/%3e %3cpath opacity='.15' d='M110.6 111.02v-37h36.98l-36.99 37Z' fill='url(%23f)'/%3e %3cpath opacity='.4' d='M73.83 0v37h36.98v37.01h37V3a3 3 0 0 0-3-3H73.82Z' fill='url(%23g)'/%3e %3c/g%3e %3cdefs%3e %3clinearGradient id='a' x1='91.31' y1='83.31' x2='118.24' y2='56.59' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='b' x1='40.99' y1='13.88' x2='.01' y2='11.64' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='c' x1='54.41' y1='120.25' x2='81.35' y2='93.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='d' x1='128.24' y1='157.22' x2='155.17' y2='130.17' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='e' x1='54.24' y1='46.21' x2='81.12' y2='19.38' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='f' x1='126.28' y1='74.05' x2='124.94' y2='111.07' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='g' x1='73.37' y1='36.87' x2='132.87' y2='66.74' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233858EA'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e";
module.exports = img;
//# sourceMappingURL=corner-ornament.svg.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"corner-ornament.svg.js","sources":["../../../../admin/src/pages/assets/corner-ornament.svg"],"sourcesContent":["var img = \"data:image/svg+xml,%3csvg width='148' height='148' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg opacity='.8' fill-rule='evenodd' clip-rule='evenodd'%3e %3cpath opacity='.15' d='M110.81 37H73.97V74.1h36.84V37Z' fill='url(%23a)'/%3e %3cpath opacity='.07' d='M36.84 0H0v37.08h36.84V0Z' fill='url(%23b)'/%3e %3cpath opacity='.07' d='M73.92 73.95H37.08v37.08h36.84V73.95Z' fill='url(%23c)'/%3e %3cpath opacity='.07' d='M147.99 110.92h-37.3V148H148v-37.08Z' fill='url(%23d)'/%3e %3cpath opacity='.15' d='M73.83 37H36.84L73.83 0v37Z' fill='url(%23e)'/%3e %3cpath opacity='.15' d='M110.6 111.02v-37h36.98l-36.99 37Z' fill='url(%23f)'/%3e %3cpath opacity='.4' d='M73.83 0v37h36.98v37.01h37V3a3 3 0 0 0-3-3H73.82Z' fill='url(%23g)'/%3e %3c/g%3e %3cdefs%3e %3clinearGradient id='a' x1='91.31' y1='83.31' x2='118.24' y2='56.59' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='b' x1='40.99' y1='13.88' x2='.01' y2='11.64' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='c' x1='54.41' y1='120.25' x2='81.35' y2='93.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='d' x1='128.24' y1='157.22' x2='155.17' y2='130.17' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='e' x1='54.24' y1='46.21' x2='81.12' y2='19.38' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='f' x1='126.28' y1='74.05' x2='124.94' y2='111.07' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='g' x1='73.37' y1='36.87' x2='132.87' y2='66.74' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233858EA'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e\";\n export default img;"],"names":["img"],"mappings":";;AAAA,IAAIA,GAAM,GAAA;;;;"}

View File

@@ -0,0 +1,4 @@
var img = "data:image/svg+xml,%3csvg width='148' height='148' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg opacity='.8' fill-rule='evenodd' clip-rule='evenodd'%3e %3cpath opacity='.15' d='M110.81 37H73.97V74.1h36.84V37Z' fill='url(%23a)'/%3e %3cpath opacity='.07' d='M36.84 0H0v37.08h36.84V0Z' fill='url(%23b)'/%3e %3cpath opacity='.07' d='M73.92 73.95H37.08v37.08h36.84V73.95Z' fill='url(%23c)'/%3e %3cpath opacity='.07' d='M147.99 110.92h-37.3V148H148v-37.08Z' fill='url(%23d)'/%3e %3cpath opacity='.15' d='M73.83 37H36.84L73.83 0v37Z' fill='url(%23e)'/%3e %3cpath opacity='.15' d='M110.6 111.02v-37h36.98l-36.99 37Z' fill='url(%23f)'/%3e %3cpath opacity='.4' d='M73.83 0v37h36.98v37.01h37V3a3 3 0 0 0-3-3H73.82Z' fill='url(%23g)'/%3e %3c/g%3e %3cdefs%3e %3clinearGradient id='a' x1='91.31' y1='83.31' x2='118.24' y2='56.59' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='b' x1='40.99' y1='13.88' x2='.01' y2='11.64' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='c' x1='54.41' y1='120.25' x2='81.35' y2='93.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='d' x1='128.24' y1='157.22' x2='155.17' y2='130.17' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='e' x1='54.24' y1='46.21' x2='81.12' y2='19.38' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='f' x1='126.28' y1='74.05' x2='124.94' y2='111.07' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='g' x1='73.37' y1='36.87' x2='132.87' y2='66.74' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233858EA'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e";
export { img as default };
//# sourceMappingURL=corner-ornament.svg.mjs.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"corner-ornament.svg.mjs","sources":["../../../../admin/src/pages/assets/corner-ornament.svg"],"sourcesContent":["var img = \"data:image/svg+xml,%3csvg width='148' height='148' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg opacity='.8' fill-rule='evenodd' clip-rule='evenodd'%3e %3cpath opacity='.15' d='M110.81 37H73.97V74.1h36.84V37Z' fill='url(%23a)'/%3e %3cpath opacity='.07' d='M36.84 0H0v37.08h36.84V0Z' fill='url(%23b)'/%3e %3cpath opacity='.07' d='M73.92 73.95H37.08v37.08h36.84V73.95Z' fill='url(%23c)'/%3e %3cpath opacity='.07' d='M147.99 110.92h-37.3V148H148v-37.08Z' fill='url(%23d)'/%3e %3cpath opacity='.15' d='M73.83 37H36.84L73.83 0v37Z' fill='url(%23e)'/%3e %3cpath opacity='.15' d='M110.6 111.02v-37h36.98l-36.99 37Z' fill='url(%23f)'/%3e %3cpath opacity='.4' d='M73.83 0v37h36.98v37.01h37V3a3 3 0 0 0-3-3H73.82Z' fill='url(%23g)'/%3e %3c/g%3e %3cdefs%3e %3clinearGradient id='a' x1='91.31' y1='83.31' x2='118.24' y2='56.59' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='b' x1='40.99' y1='13.88' x2='.01' y2='11.64' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='c' x1='54.41' y1='120.25' x2='81.35' y2='93.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='d' x1='128.24' y1='157.22' x2='155.17' y2='130.17' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%23A8B8FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='e' x1='54.24' y1='46.21' x2='81.12' y2='19.38' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='f' x1='126.28' y1='74.05' x2='124.94' y2='111.07' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233253EA'/%3e %3c/linearGradient%3e %3clinearGradient id='g' x1='73.37' y1='36.87' x2='132.87' y2='66.74' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%237A92FF'/%3e %3cstop offset='1' stop-color='%233858EA'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e\";\n export default img;"],"names":["img"],"mappings":"AAAA,IAAIA,GAAM,GAAA;;;;"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long