Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Faizankhan1104 committed Nov 28, 2024
1 parent b177945 commit e4d099f
Show file tree
Hide file tree
Showing 6 changed files with 343 additions and 83 deletions.
206 changes: 202 additions & 4 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@
"ajv": "^6.12.6",
"ajv-keywords": "^3.5.2",
"axios": "^1.6.0",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"firebase": "^10.14.0",
"framer-motion": "^11.9.0",
"myapp": "file:",
"react": "^18.2.0",
"react-bootstrap": "^2.10.6",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-lazy-load-image-component": "^1.6.2",
Expand Down
13 changes: 7 additions & 6 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<meta name="description" content="Web site created using create-react-app" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.tailwindcss.com"></script>

<!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>

<title>SCROLLME | E-Commerce Web Store</title>
<style>
* {
Expand All @@ -30,4 +30,5 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>

</html>
1 change: 1 addition & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

import './styles/global.css';
import Home from './pages/Home';
import Product from './pages/Product';
Expand Down
14 changes: 7 additions & 7 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ const Wrapper = styled.div`
justify-content: space-between;
align-items: center;
${mobile({
height: '90px',
padding: '10px 10px',
flexDirection: 'column',
justifyContent: 'space-evenly',
alignItems: 'center',
})}
height: '90px',
padding: '10px 10px',
flexDirection: 'column',
justifyContent: 'space-evenly',
alignItems: 'center',
})}
`;

const Left = styled.div`
Expand Down Expand Up @@ -164,4 +164,4 @@ const Navbar = () => {
);
};

export default Navbar;
export default Navbar;
Loading

0 comments on commit e4d099f

Please sign in to comment.