Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<link rel="icon" href="/src/images/favicon/favicon.png" />
<title>Nice Gadgets</title>
</head>
<body>
<div id="root"></div>
Expand Down
182 changes: 175 additions & 7 deletions package-lock.json

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

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@
"license": "GPL-3.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"@reduxjs/toolkit": "^2.11.2",
"bulma": "^1.0.1",
"classnames": "^2.5.1",
"lucide-react": "^1.8.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^6.25.1",
"react-transition-group": "^4.4.5"
"react-spinners": "^0.17.0",
"react-transition-group": "^4.4.5",
"slick-carousel": "^1.8.1",
"swiper": "^12.1.3"
},
"devDependencies": {
"@cypress/react18": "^2.0.1",
"@mate-academy/scripts": "^1.8.5",
"@mate-academy/scripts": "^2.1.3",
"@mate-academy/students-ts-config": "*",
"@mate-academy/stylelint-config": "*",
"@types/node": "^20.14.10",
Expand Down
1 change: 0 additions & 1 deletion src/App.scss

This file was deleted.

11 changes: 9 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
import './App.scss';
import { Outlet } from 'react-router-dom';
import { Header } from './shared/HeaderPage/Header/Header';
import { Footer } from './shared/Footer/Footer';

export const App = () => (
<div className="App">
<h1>Product Catalog</h1>
<h1 hidden>Product Catalog</h1>
<Header />
<main>
<Outlet />
</main>
<Footer />
</div>
);
Loading
Loading