Browse Source

add privacy

visuddhinanda 2 years ago
parent
commit
f64553cc2e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      routes/web.php

+ 5 - 0
routes/web.php

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