Skip to content

Commit

Permalink
Project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
TemitopeAsama committed Jul 26, 2023
1 parent 0308cd1 commit 4bbbb0b
Show file tree
Hide file tree
Showing 9 changed files with 622 additions and 78 deletions.
650 changes: 576 additions & 74 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,31 @@
},
"homepage": "https://github.com/chaoss/GitHub-Copilot-Hackathon-Project#readme",
"dependencies": {
"flowbite": "1.7.0",
"flowbite-react": "0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "8.4.27",
"stylelint": "^15.4.0",
"stylelint-config-standard": "33.0.0",
"stylelint-scss": "4.6.0",
"tailwindcss": "3.3.3",
"vite": "^4.4.0"
},
"husky": {
Expand Down
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
3 changes: 2 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import "./index.css";
function App() {
return <h1>Github Copilot Hackathon Project</h1>;
return <h1 className="text-3xl font-bold underline">Github Copilot Hacakthon Project</h1>;
}

export default App;
Empty file removed src/assets/styles/.keep
Empty file.
9 changes: 9 additions & 0 deletions src/components/Card.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const Card = () => {
return (
<div>Card</div>
)
}

export default Card
10 changes: 10 additions & 0 deletions src/components/Projects.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint-disable no-unused-vars */
import React from 'react'

const Projects = () => {
return (
<div>Projects</div>
)
}

export default Projects
3 changes: 3 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
8 changes: 8 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};

0 comments on commit 4bbbb0b

Please sign in to comment.