mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
17 lines
469 B
TypeScript
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>
|
|
);
|
|
}
|