diff --git a/src/App.js b/src/App.js index 71f4e57..ab4787e 100644 --- a/src/App.js +++ b/src/App.js @@ -30,6 +30,7 @@ import VodProduct from "./components/VodProduct"; import VodProductNew from "./components/VodProductNew"; import ProductTab from "./components/ProductTab"; import ProductStatusCard from "./components/ProductStatusCard"; +import AdvertisementDesign1 from "./components/Advertisement/design1"; function App() { return ( @@ -61,7 +62,8 @@ function App() { {/* */} {/* */} {/* */} - + {/* */} + ); diff --git a/src/components/Advertisement/design1/index.js b/src/components/Advertisement/design1/index.js new file mode 100644 index 0000000..19fd298 --- /dev/null +++ b/src/components/Advertisement/design1/index.js @@ -0,0 +1,37 @@ +import React from "react"; + +const AdvertisementDesign1 = () => { + return ( +
+
+
+
+
+
+

تبلیغات دانوینی

+

+ لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با + استفاده از طراحان گرافیک است. +

+
+ +
+
+ ); +}; + +export default AdvertisementDesign1; diff --git a/src/index.js b/src/index.js index 26372b2..fbcd7b6 100644 --- a/src/index.js +++ b/src/index.js @@ -3,9 +3,6 @@ import ReactDOM from "react-dom"; import "./index.scss"; import App from "./App"; import reportWebVitals from "./reportWebVitals"; - -import "tw-elements"; - import "@themesberg/flowbite"; ReactDOM.render( diff --git a/tailwind.config.js b/tailwind.config.js index 7ab3c72..a9b04b3 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -78,8 +78,5 @@ module.exports = { darkCrimsonBorderColor: "#132F52", }), }, - plugins: [ - require("tw-elements/dist/plugin"), - require("@themesberg/flowbite/plugin"), - ], + plugins: [require("@themesberg/flowbite/plugin")], };