Initial commit

This commit is contained in:
2025-07-11 13:21:49 +00:00
commit 8a7ab3ac24
262 changed files with 28219 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import React from 'react';
import { Box } from '@mui/material';
import { HEADER_HEIGHT } from './Layout';
const SearxngPage: React.FC = () => {
return (
<Box sx={{
position: 'absolute',
top: HEADER_HEIGHT,
left: 0,
right: 0,
bottom: 0,
overflow: 'hidden',
bgcolor: 'background.default'
}}>
<iframe
src={`${import.meta.env.VITE_FRONTEND_SITE_URL}/searxng-api/`}
style={{
width: '100%',
height: '100%',
border: 'none',
display: 'block'
}}
title="SearXNG Search"
/>
</Box>
);
};
export default SearxngPage;