diff --git a/src/art/Anushka_Tile/Anushka_Tile.jsx b/src/art/Anushka_Tile/Anushka_Tile.jsx new file mode 100644 index 0000000..02229fa --- /dev/null +++ b/src/art/Anushka_Tile/Anushka_Tile.jsx @@ -0,0 +1,31 @@ +import style from "./style.module.css"; +import { Credit } from "../../components/Credit/index"; + +// Replace ComponentName with YourName followed by ArtName. +// For example, SalilReactLogo or SalilNaikReactLogo +// component name, file name and folder name should be same. + +function Anushka_Tile() { + // Enter your name, github url and art-name below + let data = { + name: "Anushka", + "gh-link": "https://github.com/anushka00", + "art-name": "tiles", + }; + return ( +
+ {/* DO NOT edit the line above*/} + + {/* your art blocks will come here */} +
+
+ +
+ + {/* do not edit the line below */} + +
+ ); +} + +export default Anushka_Tile; diff --git a/src/art/Anushka_Tile/style.module.css b/src/art/Anushka_Tile/style.module.css new file mode 100644 index 0000000..21967ec --- /dev/null +++ b/src/art/Anushka_Tile/style.module.css @@ -0,0 +1,11 @@ +.container { + background-color: pink; +} +.blocks +{ + height: 60px; + width:60px; + background-color: brown; + box-shadow: 36px 0 red 67px 0 pink; + border: 23px; +}