Files
native-app/apps/mobile/app/(tabs)/about.tsx
2024-01-22 22:43:19 +01:00

17 lines
469 B
TypeScript

import ScreenLayout from '../../components/layout/ScreenLayout';
import { RegularText } from '../../components/ui/Text';
export default function AboutScreen() {
return (
<ScreenLayout
title="About"
subtitle="What is movie-web and how content is served?"
>
<RegularText className="text-white">
No content is served from movie-web directly and movie web does not host
anything.
</RegularText>
</ScreenLayout>
);
}