Skip to content

Commit

Permalink
[sea-orm-pro] edit
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Dec 16, 2024
1 parent 0ac02f2 commit ca2495e
Show file tree
Hide file tree
Showing 20 changed files with 978 additions and 537 deletions.
8 changes: 6 additions & 2 deletions sea-orm-pro/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('@docusaurus/types').DocusaurusConfig} */
const tailwindPlugin = require('./plugins/tailwind-config.cjs');

module.exports = {
title: 'SeaORM Pro 🐚 An admin dashboard built on top of SeaORM & Seaography',
tagline: '🐚 SeaORM Pro is an admin dashboard built on top of SeaORM & Seaography',
Expand Down Expand Up @@ -137,7 +138,7 @@ module.exports = {
// },
announcementBar: {
id: 'sea-orm-bar',
content: '🚧 &nbsp; SeaORM Pro is in closed beta! &nbsp; If you are interested, please join our <a href="https://forms.office.com/r/gWk7CU9yjV" target="_blank">waiting list</a>. &nbsp; 🚧',
content: '🚧 &nbsp; SeaORM Pro is in closed beta! &nbsp; If you are interested, please complete our <a href="https://forms.office.com/r/gWk7CU9yjV" target="_blank">License Inquiry Form</a>. &nbsp; 🚧',
isCloseable: false,
},
},
Expand Down Expand Up @@ -165,4 +166,7 @@ module.exports = {
scripts: [
'/sea-ql.js',
],
plugins: [
tailwindPlugin,
],
};
6 changes: 6 additions & 0 deletions sea-orm-pro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,11 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.16"
}
}
15 changes: 15 additions & 0 deletions sea-orm-pro/plugins/tailwind-config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
function tailwindPlugin(context, options) {
return {
name: 'tailwind-plugin',
configurePostCss(postcssOptions) {
postcssOptions.plugins = [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer'),
];
return postcssOptions;
},
};
}

module.exports = tailwindPlugin;
24 changes: 0 additions & 24 deletions sea-orm-pro/src/components/HomepageCompare.js

This file was deleted.

13 changes: 0 additions & 13 deletions sea-orm-pro/src/components/HomepageCompare.module.css

This file was deleted.

108 changes: 0 additions & 108 deletions sea-orm-pro/src/components/HomepageExample.js

This file was deleted.

7 changes: 0 additions & 7 deletions sea-orm-pro/src/components/HomepageExample.module.css

This file was deleted.

101 changes: 0 additions & 101 deletions sea-orm-pro/src/components/HomepageFeatures.js

This file was deleted.

12 changes: 0 additions & 12 deletions sea-orm-pro/src/components/HomepageFeatures.module.css

This file was deleted.

Loading

0 comments on commit ca2495e

Please sign in to comment.