|
|
@@ -26,3 +26,8 @@ Route::get('/export/wbw', function (){
|
|
|
return view('export_wbw',['sentences' => []]);
|
|
|
});
|
|
|
|
|
|
+Route::get('/privacy', function (){
|
|
|
+ $content = file_get_contents(base_path('/documents/mobile/privacy.md'));
|
|
|
+ return view('privacy',['content' => $content]);
|
|
|
+});
|
|
|
+
|