Skip to content

Commit

Permalink
Added Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalJangid123 committed Dec 25, 2023
1 parent 370788f commit 9284de5
Show file tree
Hide file tree
Showing 23 changed files with 1,389 additions and 52 deletions.
16 changes: 16 additions & 0 deletions components/Alert.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

const Alert = ({children}) => {
const style = {
border: '1px',
backgroundColor: '#f1f5f9',
borderRadius: '10px',
padding: "1.25rem",
marginTop: '1rem',
color: 'black'
}
return (
<div style={style} >{children}</div>
)
}

export default Alert
Loading

0 comments on commit 9284de5

Please sign in to comment.