Skip to content

Commit

Permalink
Refactor: Merge main branch changes into feat/add-item-quantity branc…
Browse files Browse the repository at this point in the history
…h. Update styles and dependencies.

- Update _variables.scss with new color variables
- Update vite.config.js to configure svgr plugin
- Add new views: About, UnauthenticatedHome, AuthenticatedHome
- Update index.tsx to import bootstrap and index.scss
- Update components/index.ts to import AuthenticatedNavBar and UnauthenticatedNavBar
- Update package.json to add bootstrap and react-bootstrap dependencies
- Update index.html to include bootstrap.min.css
- Update SingleList.tsx to import Button and update styles
- Update App.tsx to import About and update routes
- Add AuthenticatedNavBar.scss and AuthenticatedNavBar.tsx
- Add AuthenticatedHome.tsx and UnauthenticatedNavBar.tsx
- Update AddItemForm.tsx to import Button and Form from react-bootstrap
- Update Home.tsx to import AuthenticatedHome and UnauthenticatedHome
- Update FilterListInput.tsx to import Button, Form, and InputGroup from react-bootstrap
  • Loading branch information
RossaMania committed Oct 2, 2024
2 parents 525ac74 + 91d360a commit b582e82
Show file tree
Hide file tree
Showing 35 changed files with 1,285 additions and 268 deletions.
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@
content="A smart shopping list that learns your purchase habits and makes suggestions, so you don't forget to buy what's important."
/>
<link rel="icon" type="image/svg+xml" href="/src/favicon.ico" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<meta name="color-scheme" content="dark light" />
<title>Smart Shopping List</title>
<title>GrocerEase</title>
<script type="module" src="/src/index.tsx" async></script>
</head>
<body>
Expand Down
Loading

0 comments on commit b582e82

Please sign in to comment.