Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added tile art #186

Open
wants to merge 1 commit into
base: updates
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions src/art/Anushka_Tile/Anushka_Tile.jsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className={`${style.container} container`}>
{/* DO NOT edit the line above*/}

{/* your art blocks will come here */}
<div>
<div className={style.blocks}></div>

</div>

{/* do not edit the line below */}
<Credit data={data} />
</div>
);
}

export default Anushka_Tile;
11 changes: 11 additions & 0 deletions src/art/Anushka_Tile/style.module.css
Original file line number Diff line number Diff line change
@@ -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;
}