Skip to content

Commit 7188672

Browse files
committed
Remove route /authSection
1 parent 0ab0548 commit 7188672

4 files changed

Lines changed: 1 addition & 9 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ tools/
106106
| `/checkout` | Demo checkout form & order summary (protected) |
107107
| `/exit` | Order success / “thank you” page (protected) |
108108
| `/protected` | Example page visible only to authenticated users (guarded) |
109-
| `/authSection` | Auth entry/controls area (login/signup/profile quick actions) |
110109
| `*` | 404 Not Found (soft 404 with `noindex`, helpful CTAs) |
111110

112111
---

src/App.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import Checkout from "./component/Checkout";
1919
import About from "./component/About";
2020
import Contact from "./component/Contact";
2121
import Exit from "./component/Exit";
22-
import AuthSection from "./component/AuthSection";
2322
import ProtectedPage from "./component/ProtectedPage";
2423
import NotFound from "./component/NotFound";
2524

@@ -193,9 +192,6 @@ const AppWrapper = () => {
193192
}
194193
/>
195194

196-
{/* Demo/testing */}
197-
<Route path="/authSection" element={<AuthSection />} />
198-
199195
{/* 404 catch-all (last) */}
200196
<Route path="*" element={<NotFound />} />
201197
</Routes>

src/data/prodData.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (C) 2025 Dimitrios S. Sfyris
3-
* SPDX-License-Identifier: GPL-3.0-or-later
4-
*/
51
const product_data = [
62
{
73
id: 1,

tools/copyright-headers.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ const SKIP_FILES = new Set([
162162
".eslintignore",
163163
"package-lock.json",
164164
"tailwind.config.js",
165+
"prodData.js",
165166
]);
166167

167168
function isLicenseFile(file) {

0 commit comments

Comments
 (0)