mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-04-30 07:12:59 +02:00
9 lines
339 B
JavaScript
9 lines
339 B
JavaScript
|
const fs = require('node:fs');
|
||
|
const path = require('node:path');
|
||
|
const genericPage = require('../generic');
|
||
|
|
||
|
module.exports = () => {
|
||
|
const pageContent = fs.readFileSync(path.resolve(__dirname, './content.md'), 'utf-8');
|
||
|
return genericPage('Privacy Policy | Lexiconga', 'Details about how Lexiconga uses your data.', pageContent);
|
||
|
};
|