Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1876742
🔥 Remove unused Land404 component
Skycat1983 Aug 5, 2025
dd5f025
🔥 Remove unused Arrow component
Skycat1983 Aug 6, 2025
cb84c24
🔥 Remove unused CategoriesContainerMobile component from styled conta…
Skycat1983 Aug 6, 2025
79fc39c
🔥 Remove unused VolunteeringOpportunitiesContainer component from sty…
Skycat1983 Aug 6, 2025
40b3dd3
🔥 Remove unused VolunteeringCategoriesContainer component from styled…
Skycat1983 Aug 6, 2025
c6c7a7f
🔥 Remove unused Event831 component
Skycat1983 Aug 8, 2025
2ad0217
🔥 Remove unused EventAccompanying component
Skycat1983 Aug 8, 2025
c4088ac
🔥 Remove unused EventCookingMeet component
Skycat1983 Aug 8, 2025
d48ae56
🔥 Remove unused EventFeed component
Skycat1983 Aug 8, 2025
7aa55a2
🔥 Remove unused EventHolidayGift component
Skycat1983 Aug 8, 2025
6e0f70f
🔥 Remove unused EventVolunTeaMeet component and its related utility f…
Skycat1983 Aug 8, 2025
0fe342e
🔥 Remove unused EventWithKids component
Skycat1983 Aug 8, 2025
362af67
🔥 Remove unused EventList component and its related hook useEventComp…
Skycat1983 Aug 8, 2025
2fd02c7
🔥 Remove unused ScrollingHorizontalBar component and its associated s…
Skycat1983 Aug 8, 2025
3553513
🔥 Remove unused CookieItem and Cookies components
Skycat1983 Aug 8, 2025
af192ec
🔥 Remove unused Subpage component and its associated routes from App.tsx
Skycat1983 Aug 8, 2025
6ff1875
🔥 Remove unused setLangDirection function and its associated tests fr…
Skycat1983 Aug 8, 2025
8ce08c4
🔥 Remove unused getBaseUrl function and its associated tests from utils
Skycat1983 Aug 8, 2025
7099b61
🔥 Remove unused Header component and its associated styles
Skycat1983 Aug 8, 2025
3b0ca74
🔥 Remove unused positives constant and its related showEvent export f…
Skycat1983 Aug 8, 2025
f880d6d
🔥 Remove unused VolunteerWorkflow component and its associated styles
Skycat1983 Aug 8, 2025
d252599
🔥 Remove unused VolunteerOpportunity component and its associated styles
Skycat1983 Aug 8, 2025
2b5d8eb
🔥 Remove unused Main component and its associated styles
Skycat1983 Aug 8, 2025
71522e1
🔥 Remove unused getMainCtaUrl function and its associated interface f…
Skycat1983 Aug 8, 2025
bea9b84
🔥 Remove unused IFrame component and its associated styles
Skycat1983 Aug 8, 2025
060b307
🔥 Remove unused Sponsors component and its associated styles
Skycat1983 Aug 8, 2025
03aac6f
🔥 Remove unused CookieConsentBanner component and its associated styles
Skycat1983 Aug 8, 2025
4c69f5b
🔥 Remove unused Footer component and its associated styles
Skycat1983 Aug 8, 2025
9f851eb
🔥 Remove unused ContactForRAC component and its associated styles
Skycat1983 Aug 8, 2025
7fd93f7
🔥 Remove unused Home component and its associated routes
Skycat1983 Aug 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 0 additions & 89 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ import DataPrivacy from "./pages/DataPrivacy";
import EventPage from "./pages/EventPage";
import FAQ from "./pages/FAQ";
import GuidelinesPage from "./pages/GuidelinesPage";
import Home from "./pages/Home";
import Landing from "./pages/Landing";
import LegalNotice from "./pages/LegalNotice";
import Opportunities from "./pages/Opportunities";
import OpportunityForm from "./pages/OpportunityForm";
import Subpage from "./pages/Subpage";
import VolunteerForm from "./pages/VolunteerForm";
import Agreement from "./pages/VPA";
import { consoleLogDeveloperContributionMessage } from "./utils";
Expand Down Expand Up @@ -55,93 +53,6 @@ function App() {
<div ref={containerRef} className="app-container">
<Routes>
<Route path="/" element={<Landing />} />
<Route path={`/${Subpages.OLD}/:lng`} element={<Home />} />
<Route path={`/${Subpages.OLD}`} element={<Home />} />
<Route
path={`/${Subpages.NOTICE}/:lng`}
element={<Subpage type={Subpages.NOTICE} />}
/>
<Route
path={`/${Subpages.NOTICE}`}
element={<Subpage type={Subpages.NOTICE} />}
/>
<Route
path={`/${Subpages.DATA_PROTECTION}/:lng`}
element={<Subpage type={Subpages.DATA_PROTECTION} />}
/>
<Route
path={`/${Subpages.DATA_PROTECTION}`}
element={<Subpage type={Subpages.DATA_PROTECTION} />}
/>
<Route
path={`/${Subpages.AGREEMENT}/:lng`}
element={<Subpage type={Subpages.AGREEMENT} />}
/>
<Route
path={`/${Subpages.AGREEMENT}`}
element={<Subpage type={Subpages.AGREEMENT} />}
/>
<Route
path={`/${Subpages.GUIDELINES}/:lng`}
element={<Subpage type={Subpages.GUIDELINES} />}
/>
<Route
path={`/${Subpages.GUIDELINES}`}
element={<Subpage type={Subpages.GUIDELINES} />}
/>
<Route
path={`/${Subpages.BECOME_VOLUNTEER}/:lng`}
element={<Subpage type={Subpages.BECOME_VOLUNTEER} />}
/>
<Route
path={`/${Subpages.BECOME_VOLUNTEER}`}
element={<Subpage type={Subpages.BECOME_VOLUNTEER} />}
/>
<Route
path={`/${Subpages.ANNOUNCEMENT}/:lng`}
element={<Subpage type={Subpages.ANNOUNCEMENT} />}
/>
<Route
path={`/${Subpages.ADD_OPPORTUNITY}`}
element={<Subpage type={Subpages.ADD_OPPORTUNITY} />}
/>
<Route
path={`/${Subpages.ADD_OPPORTUNITY}/:lng`}
element={<Subpage type={Subpages.ADD_OPPORTUNITY} />}
/>
<Route
path={`/${Subpages.EVENT}/:lng`}
element={<Subpage type={Subpages.EVENT} />}
/>
<Route
path={`/${Subpages.EVENT}`}
element={<Subpage type={Subpages.EVENT} />}
/>
<Route
path={`/${Subpages.EVENTS}/:lng`}
element={<Subpage type={Subpages.EVENTS} />}
/>
<Route
path={`/${Subpages.EVENTS}`}
element={<Subpage type={Subpages.EVENTS} />}
/>
<Route
path={`/${Subpages.COOKIES}/:lng`}
element={<Subpage type={Subpages.COOKIES} />}
/>
<Route
path={`/${Subpages.COOKIES}`}
element={<Subpage type={Subpages.COOKIES} />}
/>
<Route
path={`/${Subpages.FAQS}/:lng`}
element={<Subpage type={Subpages.FAQS} />}
/>
<Route
path={`/${Subpages.FAQS}`}
element={<Subpage type={Subpages.FAQS} />}
/>

<Route path={`/${Subpages.FAQ}`} element={<FAQ />} />
<Route path={`/${Subpages.ABOUT}`} element={<About />} />
<Route
Expand Down
8 changes: 0 additions & 8 deletions src/components/ContactForRAC/index.css

This file was deleted.

23 changes: 0 additions & 23 deletions src/components/ContactForRAC/index.tsx

This file was deleted.

38 changes: 0 additions & 38 deletions src/components/CookieConsentBanner.tsx

This file was deleted.

66 changes: 0 additions & 66 deletions src/components/Event/Event831.tsx

This file was deleted.

93 changes: 0 additions & 93 deletions src/components/Event/EventAccompanying.tsx

This file was deleted.

Loading