Skip to content

Commit

Permalink
add components for projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Benevanio committed Jan 10, 2023
1 parent fea0f7f commit 91989ab
Show file tree
Hide file tree
Showing 12 changed files with 83 additions and 0 deletions.
37 changes: 37 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-scripts": "5.0.1",
"sass": "^1.57.1",
"web-vitals": "^2.1.4"
},
"scripts": {
Expand Down
Empty file.
9 changes: 9 additions & 0 deletions src/components/actions/action.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Action.scss'
const Action = () => {
return (
<div>Action</div>
)
}

export default Action
9 changes: 9 additions & 0 deletions src/components/article/article.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './article.scss'
const article = () => {
return (
<div>article</div>
)
}

export default article
Empty file.
9 changes: 9 additions & 0 deletions src/components/brand/Brand.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Brand.scss'
const Brand = () => {
return (
<div>Brand</div>
)
}

export default Brand
Empty file added src/components/brand/Brand.scss
Empty file.
9 changes: 9 additions & 0 deletions src/components/features/Features.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Features.scss'
const Features = () => {
return (
<div>Features</div>
)
}

export default Features
Empty file.
9 changes: 9 additions & 0 deletions src/components/navbar/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'
import './Navbar.scss'
const Navbar = () => {
return (
<div>Navbar</div>
)
}

export default Navbar
Empty file.

0 comments on commit 91989ab

Please sign in to comment.