Skip to content

Commit

Permalink
Create project component. Add projects. Styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
megbuch committed Mar 16, 2024
1 parent 296a75b commit 1b8ab90
Show file tree
Hide file tree
Showing 20 changed files with 4,393 additions and 4,228 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
'warn',
{ allowConstantExport: true },
],
"react/no-unescaped-entities": 0,
"react/prop-types": "off"
'react/no-unescaped-entities': 0,
'react/prop-types': 'off'
},
}
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<html lang="en">
<html lang='en'>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset='UTF-8' />
<link rel='icon' type='image/svg+xml' href='/vite.svg' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<div id='root'></div>
<script type='module' src='/src/main.jsx'></script>
</body>
</html>
Loading

0 comments on commit 1b8ab90

Please sign in to comment.