@@ -111,9 +111,11 @@ const WallpaperEnginePage = lazy(() => import('../pages/apps/WallpaperEnginePage
111111const SymbolFlowPage = lazy ( ( ) => import ( '../pages/apps/SymbolFlowPage' ) ) ;
112112const DataPrismPage = lazy ( ( ) => import ( '../pages/apps/DataPrismPage' ) ) ;
113113const JsMasterclassPage = lazy ( ( ) => import ( '../pages/apps/JsMasterclassPage' ) ) ;
114+ const CsvFlashcardsPage = lazy ( ( ) => import ( '../pages/apps/CsvFlashcardsPage' ) ) ;
114115const ColorTheoryPage = lazy ( ( ) => import ( '../pages/apps/ColorTheoryPage' ) ) ;
115116const TierForgePage = lazy ( ( ) => import ( '../pages/apps/TierForgePage' ) ) ;
116117const FezGlyphPage = lazy ( ( ) => import ( '../pages/apps/FezGlyphPage' ) ) ;
118+ const GokturkishConverterPage = lazy ( ( ) => import ( '../pages/apps/GokturkishConverterPage' ) ) ;
117119const AssetConstructorPage = lazy ( ( ) => import ( '../pages/apps/AssetConstructorPage' ) ) ;
118120const PatternGeneratorPage = lazy ( ( ) => import ( '../pages/apps/PatternGeneratorPage' ) ) ;
119121const CodeblockCreatorPage = lazy ( ( ) => import ( '../pages/apps/CodeblockCreatorPage' ) ) ;
@@ -1169,6 +1171,10 @@ const AnimatedRoutes = ({
11691171 path = "/apps::fg"
11701172 element = { < Navigate to = "/apps/fezglyph" replace /> }
11711173 />
1174+ < Route
1175+ path = "/apps::gokturk"
1176+ element = { < Navigate to = "/apps/gokturkish-converter" replace /> }
1177+ />
11721178 < Route
11731179 path = "/apps::pat"
11741180 element = { < Navigate to = "/apps/pattern-generator" replace /> }
@@ -2508,6 +2514,22 @@ const AnimatedRoutes = ({
25082514 </ motion . div >
25092515 }
25102516 />
2517+ < Route
2518+ path = "/apps/csv-flashcards"
2519+ element = {
2520+ < motion . div
2521+ initial = "initial"
2522+ animate = "in"
2523+ exit = "out"
2524+ variants = { pageVariants }
2525+ transition = { pageTransition }
2526+ >
2527+ < Suspense fallback = { < Loading /> } >
2528+ < CsvFlashcardsPage />
2529+ </ Suspense >
2530+ </ motion . div >
2531+ }
2532+ />
25112533 < Route
25122534 path = "/apps/fezglyph"
25132535 element = {
@@ -2524,6 +2546,22 @@ const AnimatedRoutes = ({
25242546 </ motion . div >
25252547 }
25262548 />
2549+ < Route
2550+ path = "/apps/gokturkish-converter"
2551+ element = {
2552+ < motion . div
2553+ initial = "initial"
2554+ animate = "in"
2555+ exit = "out"
2556+ variants = { pageVariants }
2557+ transition = { pageTransition }
2558+ >
2559+ < Suspense fallback = { < Loading /> } >
2560+ < GokturkishConverterPage />
2561+ </ Suspense >
2562+ </ motion . div >
2563+ }
2564+ />
25272565 < Route
25282566 path = "/apps/lorem-ipsum-generator"
25292567 element = {
0 commit comments