|
|
|
import "./App.scss";
|
|
|
|
import ButtonDesign from "./components/buttonDesign/ButtonDesign";
|
|
|
|
import ProductDesign from "./components/productDesign/ProductDesign";
|
|
|
|
import ProductTags from "./components/productTags/ProductTags";
|
|
|
|
import CounterDesign from "./components/counterDesign/CounterDesign";
|
|
|
|
import BookDesign from "./components/bookDesign/BookDesign";
|
|
|
|
import BlogDesign1 from "./components/Blogs/design1/BlogDesign1";
|
|
|
|
import BlogDesign2 from "./components/Blogs/design2/BlogDesign2";
|
|
|
|
import BlogDesign3 from "./components/Blogs/design3/BlogDesign3";
|
|
|
|
import BlogDesign4 from "./components/Blogs/design4/BlogDesign4";
|
|
|
|
import BlogDesign5 from "./components/Blogs/design5/BlogDesign5";
|
|
|
|
import BlogDesign6 from "./components/Blogs/design6/BlogDesign6";
|
|
|
|
import HeaderDesign1 from "./components/Header/desgin1/HeaderDesign1";
|
|
|
|
import VodProductDesign from "./components/vodProductDesign/VodProductDesign";
|
|
|
|
import ContactInfoSection from "./components/contactInfoSection/ContactInfoSection";
|
|
|
|
import FooterDesign1 from "./components/footer/design1/FooterDesign1";
|
|
|
|
import Testttt from "./components/testtttt/Testttt";
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
|
|
|
<ProductDesign />
|
|
|
|
{/* <VodProductDesign /> */}
|
|
|
|
{/* <BookDesign /> */}
|
|
|
|
{/* <ButtonDesign /> */}
|
|
|
|
{/* <ProductTags /> */}
|
|
|
|
{/* <CounterDesign /> */}
|
|
|
|
{/* <BlogDesign1 /> */}
|
|
|
|
{/* <BlogDesign2 /> */}
|
|
|
|
{/* <BlogDesign3 /> */}
|
|
|
|
{/* <BlogDesign4 /> */}
|
|
|
|
{/* <BlogDesign5 /> */}
|
|
|
|
{/* <BlogDesign6 /> */}
|
|
|
|
{/* <HeaderDesign1 /> */}
|
|
|
|
{/* <ContactInfoSection /> */}
|
|
|
|
{/* <FooterDesign1 /> */}
|
|
|
|
<Testttt />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|