Skip to content

Commit

Permalink
setup for next project
Browse files Browse the repository at this point in the history
  • Loading branch information
nuexq committed Apr 21, 2024
1 parent b6b9f15 commit 6539e8e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import ImageSlider from "@/pages/ImageSlider";
import LoadMoreData from "./pages/LoadMoreData";
import TreeView from "./pages/tree-view/TreeView";
import QRCodeGenerator from "./pages/QRCodeGenerator";
import LightDarkMode from "./pages/light-dark-mode/light-dark-mode";
import LightDarkMode from "./pages/light-dark-mode/Light-dark-mode";
import { ScrollIndicator } from "./pages/ScrollIndicator";

function App() {
return (
Expand Down Expand Up @@ -44,6 +45,8 @@ function App() {
<Route path="qr-code-generator" element={<QRCodeGenerator />} />
{/* Light Dark Mode */}
<Route path='light-dark-mode' element={<LightDarkMode />} />
{/* Scroll Indicator */}
<Route path="scroll-indicator" element={<ScrollIndicator />} />

{/* Error Page */}
<Route path="*" element={<NotFound />} />
Expand Down
5 changes: 5 additions & 0 deletions src/data/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ export const projects = [
id: 8,
name: 'Light Dark Mode',
path: 'light-dark-mode',
},
{
id: 9,
name: 'Scroll Indicator',
path: 'scroll-indicator',
}
];

5 changes: 5 additions & 0 deletions src/pages/ScrollIndicator.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export const ScrollIndicator = () => {
return (
<div>ScrollIndicator</div>
)
}

0 comments on commit 6539e8e

Please sign in to comment.