mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:43:25 +00:00
chore: clean this stuff up too
This commit is contained in:
@@ -3,14 +3,8 @@ import { Text } from "~/components/ui/Text";
|
||||
|
||||
export default function AboutScreen() {
|
||||
return (
|
||||
<ScreenLayout
|
||||
title="About"
|
||||
subtitle="What is movie-web and how content is served?"
|
||||
>
|
||||
<Text>
|
||||
No content is served from movie-web directly and movie web does not host
|
||||
anything.
|
||||
</Text>
|
||||
<ScreenLayout title="About">
|
||||
<Text>About tab</Text>
|
||||
</ScreenLayout>
|
||||
);
|
||||
}
|
||||
|
@@ -3,11 +3,8 @@ import { Text } from "~/components/ui/Text";
|
||||
|
||||
export default function AccountScreen() {
|
||||
return (
|
||||
<ScreenLayout
|
||||
title="Account"
|
||||
subtitle="Manage your movie web account from here"
|
||||
>
|
||||
<Text>Hey Bro! what are you up to?</Text>
|
||||
<ScreenLayout title="Account">
|
||||
<Text>Account tab</Text>
|
||||
</ScreenLayout>
|
||||
);
|
||||
}
|
||||
|
@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
|
||||
|
||||
export default function HomeScreen() {
|
||||
return (
|
||||
<ScreenLayout title="Home" subtitle="This is where all magic happens">
|
||||
<Text>Movies will be listed here</Text>
|
||||
<ScreenLayout title="Home">
|
||||
<Text>Home tab</Text>
|
||||
</ScreenLayout>
|
||||
);
|
||||
}
|
||||
|
@@ -32,7 +32,6 @@ export default function SearchScreen() {
|
||||
<Text className="text-2xl font-bold">Search</Text>
|
||||
</View>
|
||||
}
|
||||
subtitle="Looking for something?"
|
||||
>
|
||||
<Searchbar onSearchChange={handleSearchChange} />
|
||||
<View className="flex w-full flex-1 flex-row flex-wrap justify-start">
|
||||
|
@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
|
||||
|
||||
export default function SettingsScreen() {
|
||||
return (
|
||||
<ScreenLayout title="Settings" subtitle="Need to change something?">
|
||||
<Text>Settings would be listed in here. Coming soon</Text>
|
||||
<ScreenLayout title="Settings">
|
||||
<Text>Settings tab</Text>
|
||||
</ScreenLayout>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user