File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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---
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import Checkout from "./component/Checkout";
1919import About from "./component/About" ;
2020import Contact from "./component/Contact" ;
2121import Exit from "./component/Exit" ;
22- import AuthSection from "./component/AuthSection" ;
2322import ProtectedPage from "./component/ProtectedPage" ;
2423import 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 >
Original file line number Diff line number Diff line change 1- /*
2- * Copyright (C) 2025 Dimitrios S. Sfyris
3- * SPDX-License-Identifier: GPL-3.0-or-later
4- */
51const product_data = [
62 {
73 id : 1 ,
Original file line number Diff line number Diff 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
167168function isLicenseFile ( file ) {
You can’t perform that action at this time.
0 commit comments